// JavaScript Document\

$(document).ready(function(){

	//Calendar image rollover
	$("#calendar ul li.ro").mouseenter(function(){ 
		
		$(this).find('img.orig').fadeOut();	
		
	}).mouseleave(function(){
     	
		$(this).find('img.orig').fadeIn();		
		
    });
	
	$('#hero-home-slideshow').galleryView({
		panel_width: 607,
		panel_height: 377,
		transition_speed: 1500,
		transition_interval: 3000,
		nav_theme: 'images',
		border: 'none',
		easing: 'swing',
		show_captions: true,
		fade_panels: true,
		pause_on_hover: true
	});	
	
//	$('#hero-home-slideshow').mouseover(function(){
//    	
//		$(".panel-overlay").slideUp(500);
//		
//    }).mouseout(function(){
//      
//	  $(".panel-overlay").slideDown(500);
//	  
//    });
	


	
});
