(function($){

$(document).ready(function($) {
        
	$(".release_thumb").hover(
                function(){
                    $(this).find(".overlay").fadeIn('fast', function(){ });
		},
                function(){
                    $(this).find(".overlay").fadeOut('fast', function(){ });
                }
        );
        
        $(".flickr_lightbox_selector").each(function(){
            $(this).fancybox(); 
        });
        
        $(".vimeo_lightbox_selector").each(function(){
                $(this).fancybox({
                    'padding'		: 0,
                    'autoScale'		: false,
                    'transitionIn'	: 'none',
                    'transitionOut'	: 'none',
                    'title'		: this.title,
                    'width'		: 668,
                    'height'		: 418,
                    'href'	        : this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
                    'type'		: 'swf'
                });
        });

	return false;

});

})(jQuery);
