$(function() {
	$("#mainArea li").hover(
		function () {
			$("#mainArea li").css("z-index", 1);
			$(this).css("z-index", 10).addClass("hover");
		},
		function () {
			$(this).removeClass("hover");
		}
	)
	$("#brandList li").hover(
		function () {
			$("#brandList li").css("z-index", 1);
			$(this).css("z-index", 10).addClass("hover");
		},
		function () {
			$(this).removeClass("hover");
		}
	)

	$('#newShop dl a').click( function(){
		var wo = window.open($(this).attr("href"),"popupwin","status=yes,menubar=yes,scrollbars=yes,width="+600+",height="+750);
		return false;
	});
});


