
$(document).ready(function(){
	$('.list_gallery img').css('cursor', 'pointer').click(function() {
		window.location=$(this).parent('.list_gallery').find("a.item_detail").attr("href"); return false;
	});
});