/**************GLOBALS*******************/
function initPanelEvents() {
	for (var i=0; i< numPanels ; i++)
	{
		$("#panelImage_"+i).fadeTo(0, 0);
		$("#panelImage_"+i).hover(
 			function() {
				$(this).fadeTo(50, 1);		

 			},
 			function() {
				$(this).fadeTo(250, 0);		
 			}
		);
	}	
	$("img.panelImage").css("visibility", "visible");
	
}


