// ie6 リンク背景画像ちらつき用

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

// ie6 first-child用
$(document).ready(function() {  
	$('#footer ul li:first-child').addClass('firstChild');
}); 