// JavaScript Document

$(function(){
		$("#gnav > ul > li").hover(function(){
				if($.browser.msie){
					$(this).children("h3").css("backgroundPositionX","-226px");
					$(this).children("ul").show();
				}else{
				liBgPos = $(this).children("h3").css("background-position");
				liBgPosSp = liBgPos.split(" ");
				$(this).children("h3").css("background-position","-226px "+liBgPosSp[1]);
				$(this).children("ul").fadeIn("fast");
				}
			},function(){
				if($.browser.msie){
					$(this).children("h3").css("backgroundPositionX","0");
					$(this).children("ul").hide();
				}else{
				$(this).children("h3").css("background-position","0 "+liBgPosSp[1]);
				$(this).children("ul").fadeOut("fast");
				}
			}
		);
});


