jQuery(document).ready(function() {
	
	jQuery('.photo_galeries div').click(function(){
		window.location=jQuery(this).find("a").attr("href");
		return false;
	});
	
	jQuery(".shop ul").hover(
	  function () {
		jQuery(".online_shop").addClass("active_link");
	  }, 
	  function () {
		jQuery(".online_shop").removeClass("active_link");
	  }
	);

}); 
