$(document).ready(function() {
	var itemclicked = "false";

	// Slideshows
	for(s=0;s<100;s++) {
		$('#slide'+s) 
			.cycle({ 
				fx: 'fade', 
				speed: '2000', 
				timeout: 0, 
				next: '.Next' +s,
				prev: '.Prev' +s,
		});
	}
});


function goLite(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#7DEC3C";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#999999";
}

function goDim(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#ffffff";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#333333";
}