// JavaScript Document
$(document).ready(function(){ 
        $(document).pngFix();
		 
		$('#photos').galleryView({
    panel_width: 960,
    panel_height: 250,
    transition_speed: 1500,
    transition_interval: 5000,
    nav_theme: 'dark',
	 border: '0px solid white',
overlay_height: 0,
	    pause_on_hover: false
});

$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({top:'30px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
				});

    });

