function test()
{
			alert("pew");	
			document.siteSearch.submit()
}
		
$(document).ready(function() {

		
		
		///////////// IMAGE ROLLOVER USE CLASS "rollOver" /////////////
		$(".rollOver img, .rollOverDonate").hover(
		 function()
		 {
		  this.src = this.src.replace("_off","_on");
		 },
		 function()
		 {
		  this.src = this.src.replace("_on","_off");
		 }
		);
		
		
		
		
		
		$("#searchInput").focus(
			function()
			{
				$("#searchInput").val('');
			}
			);

						
	//////// SLIDER ON HOMEPAGE ///////	
	if($('.slideshow').cycle)
	{
		$('.slideshow').cycle({
		fx: 'scrollHorz',
		timeout: 0,
		speed: 1000,
		//easing: 'easeInCubic',
		easing: 'easeOutSine',
		next: '#next',
		prev: '#prev'
		});
		 
		
		var howH = $('#contentPanelWrapper').height() - $('.contentPanelHeader').height() - 80;
		 $('.contentPanelInfo').css('height', howH); 
		 
	}
	
		
////////////////////////// END DOC READY //////////////////////////					
});
