/**
 * ¸¶ÀÌÆäÀÌÁö Menu
 */

jvLogout = function() {
	jQuery("#hiddenLogoutFrame").attr({
		src: "/login/jjangLogout.jsp"
	});
	
	document.location = "/login/newLogout.jsp";
} 

var date = new Date();

jQuery(function() {
	
	jQuery("DIV.gnbMenu LI.mypage02")
		.mouseenter(function() {
			var o = jQuery(this);
			jQuery("#mypage_menu").attr("src", "/images/shopping/menu/btn_gnb_09_on.gif");
			jQuery(o).children("DIV").show();
		})
		.mouseleave(function() {
			var o = jQuery(this);
			jQuery("#mypage_menu").attr("src", "/images/shopping/menu/btn_gnb_09_off.gif");
			jQuery(o).children("DIV").hide();
		});
	
	// Login/Logout
	jQuery.post(
		'/shop/login/topLogin.jsp',
		function(data) {
			jQuery("DIV.gnbMenu>UL").prepend(data);
		},
		'html'
	);
	
	if( date.getMonth() == 7 ) {
		jQuery("#header03").attr("class","clearfix mainEvent");
	}
	
	if( date.getMonth() == 8 ) {
		if ( date.getDate() <= 12 ) {
			jQuery("#header03").attr("class","clearfix mainEvent");
		}
	}
});
