//判断浏览器分辨率，调用不同CSS，保证结构不变的前提令其自适应屏幕宽度
//根目录调用
var css_url1024x768 = "/templates/default/1024.css";
if(screen.width < 1200 || jQuery(window).width() < 1200)
document.getElementById("skin").href=css_url1024x768;
jQuery(window).resize(function(){
	if(jQuery(window).width() < 1200){
		document.getElementById("skin").href=css_url1024x768;
			
	}else{
		document.getElementById("skin").href="";
	}
})
