$(document).ready(function() {

	
	$(" div.thumbnail_list_piece img").mouseover(function() {
		
		var id = $(this).attr("id");
			
		var name = $(this).attr("class");
		
		$(" div.big-container img").fadeOut(800);
	    $(" div.big-container img#img"+id).fadeIn(800);
			console.log(id);				
	    $(".gallery div.big-container p").fadeOut(800);
	    $(".gallery div.big-container p#p"+ id).fadeIn(800);	

         window.location.hash = "image" + id ;
	
	});


	console.log(window.location.hash);				

	if(window.location.hash){
		var id = window.location.hash.substr(6);
		console.log(id);				
		
		$(" div.big-container img").hide();
		$(" div.big-container img#img"+id).show();
		
		$(" .gallery div.big-container p").hide();
		$(" .gallery div.big-container p#p"+id).show();
		
	}
	
});

