$(document).ready(function(){
	$("#box > ul > li > *").click(function () {
		return false;
	});

	$("#picture1").mouseover(function () {
		$("#picture_show > *:not(#box)").hide();
		$("#picture_show1").show();
	});
	
	$("#picture2").mouseover(function () {
		$("#picture_show > *:not(#box)").hide();
		$("#picture_show2").show();
	});

	$("#picture3").mouseover(function () {
		$("#picture_show > *:not(#box)").hide();
		$("#picture_show3").show();
	});
	
	$("#picture4").mouseover(function () {
		$("#picture_show > *:not(#box)").hide();
		$("#picture_show4").show();
	});
	
	$("#picture5").mouseover(function () {
		$("#picture_show > *:not(#box)").hide();
		$("#picture_show5").show();
	});
	
});