/***********************************************
	CambiaSez()
	Version 1.0
	Last Revision: 02-01-2006
	License: GNU/GPL
	by http://www.marcomunari.it
	
	PLEASE LEAVE THIS NOTICE IN TACT!

	Should you modify/improve upon this code
	please let me know so that i may update the 
	version hosted at marcomunari.it

***********************************************/

function CambiaSez( s, nSez ) {
	for( i=1; i<=nSez; i++ ) {
//		document.getElementById( 'button'+i ).style.backgroundColor = "";
		document.getElementById( 'button'+i ).style.borderBottom = "";
		document.getElementById( 'sez'+i ).style.display = "none";
	}
//	document.getElementById( 'button'+s ).style.backgroundColor = "#EBE8E2";
	document.getElementById( 'button'+s ).style.borderBottom = "solid #FF454A 3px";
	document.getElementById( 'sez'+s ).style.display = "";
}

