
	$(document).ready(function(){


		$(".logo").click(function(){
			window.location = "default.html";
		});


		$(".main_right LI").hover(function(){
			$(this).attr("style", "background:#CCD1D5;");
			$("A", this).attr("style", "color:#653232; text-decoration:none;");
		},function(){
			$(this).attr("style", "");
			$("A", this).attr("style", "");
		});


		$(".item").hover(function(){
			$("IMG", this).css("border-color", "#B79F9F");
			$("A", this).css("color", "#9D7A40");
		},function(){
			$("IMG", this).css("border-color", "");
			$("A", this).css("color", "");
		});

		


	});

