// JavaScript Document$(function() {		$("#accordion").accordion({			autoHeight: false,			active: 9,			collapsible: true		});						$("#accordion2").accordion({			autoHeight: false,			active: 9,			collapsible: true		});				$("#accordion3").accordion({			autoHeight: false,			active: 7,			collapsible: true		});				$("#accordion4").accordion({			autoHeight: false,			active: 7,			collapsible: true		});				$("#accordion5").accordion({			autoHeight: false,			active: 20,			collapsible: true		});				$("#accordion6").accordion({			autoHeight: false,			active: 0,			collapsible: true		});						$("#accordion9").accordion({			autoHeight: false,			active: 20,			collapsible: true		});				$("#accordion10").accordion({			autoHeight: false,			active: 30,			collapsible: true		});								 $('#gallery a').lightBox();		 		      				$('#sponsors img').each(function() {			var imgFile = $(this).attr('src');			var preloadImage = new Image();  			var imgExt = /(\.\w{3,4}$)/;  			preloadImage.src = imgFile.replace(imgExt,'_h$1');				$(this).hover(			function() {				$(this).attr('src', preloadImage.src);			},			function () {				$(this).attr('src', imgFile);				}			); // end hover		}); // end each//end sponsors				$('.imagesponsors').cycle({    			 fx:     'scrollHorz',    			 prev:   '#prev1',     		 next:   '#next1',     		timeout: 0		});// end cycle					$('.pre').click(function() {				$('.pre_section').show();			 				$('.gala_section').hide();				$('.connectcon_section').hide(); 		   				$('#accordion').hide();				$('#accordion2').hide();				$('.spacerhide1').hide();				$('#accordion10').hide();									return false	   						   });				$('.gala').click(function() {				$('.gala_section').show();				$('.pre_section').hide();			 								$('.connectcon_section').hide(); 		   				$('#accordion').hide();				$('#accordion2').hide();				$('.spacerhide1').hide();				$('#accordion10').hide();								return false						   });				$('.connectcon').click(function() {				$('.pre_section').hide();			 				$('.gala_section').hide();				$('.connectcon_section').show(); 		   				$('#accordion').show();				$('#accordion2').show();				$('.spacerhide1').hide();				$('.spacerhide2').hide();				$('#accordion10').show();				return false						   						   });				$('.conall').click(function() {				$('.pre_section').show();			 				$('.gala_section').show();				$('.connectcon_section').show(); 		   				$('#accordion').show();				$('#accordion2').show();				$('.spacerhide1').show();				$('.spacerhide2').show();				$('#accordion10').show();				return false										   });				$('#header').html('<a href="index.php"><img src="images/clear.gif" width="940" height="186" alt="home" /></a>');									}); //end ready
