$(function(){
	$("#globalNavi").children().children().children().each(function(){
		if($(this).parent().attr("class")=="on"){
				$(this).css("background-position","0 0");
		}
		$(this).hide();
		$(this).parent().mouseover(
	        function(){
				$(this).css("background-position","0 0");
				$(this).children().css("visibility","visible");
				$(this).children().show();
        	}
		);
		$(this).parent().mouseout(
	        function(){
				if($(this).attr("class")=="off"){
					$(this).css("background-position","0 -23px");
				}
				$(this).children().hide();
        	}
		);
	});
});


try {
document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}