// footer ie6用
$(function() {       
if($.browser.msie && $.browser.version<7){
	//background flickr
	try {
	  document.execCommand("BackgroundImageCache", false, true);
	} catch(e) {}
	$("#footerLinks li:first-child, #externalLinkArea li:first-child").addClass("firstChild"); 
	//top下部リンクにclass firstChildを追加 
	function winMove() {			
	var winWidth = $(window).width();//ウィンドウ幅を取得
	//console.log(winWi)
	if(winWidth<990){//幅が990px以下なら
		$("#globalNav").css({ width :"990px"}); //width 990px
		}else if(winWidth>990){ //990px以上なら
			$("#globalNav").css({ width :"100%"}); //100%に
			}
	wintimer = setTimeout(winMove, 100);
}winMove();
}
}); 

