$(document).ready(function () {
   // $('#galleryHolder').addClass("hide");
	/*$('div.navigation_button').click(function () {
	$('ul.navigation').slideToggle('medium');
    });
	*/
$("#gallery li").quickpaginate({ perpage: 9, pager : $("#pagination") });
	
	$("a[rel='slideshow']").colorbox({slideshow:true});
	//$('#galleryHolder').fadeIn(2000);
	//$("a[rel^='slideshow']").prettyPhoto({theme: 'light_square',slideshow:5000, autoplay_slideshow:true});
	$(".thumbHolder .dshd").append("<span></span>");
			$('.thumbHolder .dshd span').hide();
					
			$(".thumbHolder .dshd").hover(function(){
				
				$(this).find("img").stop().animate({opacity:0.5}, "normal");
				$(this).find("span").fadeIn("slow");
				
			}, function(){
				$(this).find("img").stop().animate({opacity:1}, "normal");
				$(this).find("span").fadeOut("slow");
			});
	
});
