// More Information popup box - center in window
$(document).ready(function() {    
    
     $('a[name=popupcenter]').click(function(e) {  
         e.preventDefault();  
         var id = $(this).attr('href');  
              
         //Get the window height and width  
         var winH = $(window).height();  
         var winW = $(window).width();  
                 
         //Set the popup window to center  
         $(id).css('top',  winH/2-$(id).height()/2);  
         $(id).css('left', winW/2-$(id).width()/2);  
       
         //transition effect  
         $(id).fadeIn(400);   
       
     });  
       
	$('.window .close').click(function (e) {
		e.preventDefault();
		$('.window').fadeOut(400);
	});		
		
	
});



// Image rotation
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade',
		delay:  -2000,
		timeout:     8000

	});
});




//floating message
$(document).ready(function() {

	$(window).scroll(function() {
  		$('#message_box').animate({top:$(window).scrollTop()+"px" },{queue: false, duration: 350});  
	});

	$('#close_message').click(function(){
		$('#message_box').animate({opacity:0}, "slow");
	});
});

