// JavaScript Document
$(document).ready(function(){
		$(".thumb_off").css("opacity",0.5);
		
    	$("a.group").fancybox({
    		'transitionIn'		: 'fade',
    		'transitionOut'		: 'fade',
    		'titlePosition' 	: 'inside',
    		'cyclic'            :    true,
    		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
    		    return 'Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '';
    		}
    	});

});//end all

$(function() {
$(".thumb_off").hover(
function () {
$(this).css("opacity",1);
},
function () {
$(this).css("opacity",0.5);
} 
);
});









