$(function(){
	$("#full-01, #full-02, #full-03, #full-04").hide();
	$(".thumb-01").hover(function(){
		$("#full-01").fadeIn(500);
	},
	function(){
		$("#full-01").fadeOut(500);
	})
	
	$(".thumb-02").hover(function(){
		$("#full-02").fadeIn(500);
	},
	function(){
		$("#full-02").fadeOut(500);
	})
	
	$(".thumb-03").hover(function(){
		$("#full-03").fadeIn(500);
	},
	function(){
		$("#full-03").fadeOut(500);
	})
	
	$(".thumb-04").hover(function(){
		$("#full-04").fadeIn(500);
	},
	function(){
		$("#full-04").fadeOut(500);
	})
})

