/**
 * @author {Jacek Jarzab}
 */ 

jQuery(function($){	
	/* shows animated loader on main menu gallery link */			
	/*$(".item3").click(function(){		
		offset=$(this).offset();
		newleft= Math.round(offset.left+($(this).width()/2))-12+"px";
		newtop= Math.round(offset.top+($(this).height()/2))-10+"px";			
		showLoader("loader1",newleft.toString(),newtop.toString());		
	});*/
	
	$(".thumb").mouseover(function(){
		$(this).css({opacity:0.5});
	});
	$(".thumb").mouseout(function(){
		$(this).css({opacity:1});
	});
	
});


