function getBrowserWidth(){
	if (window.innerWidth){
		return window.innerWidth;
	}else if (document.documentElement && document.documentElement.clientWidth != 0){
		return document.documentElement.clientWidth;	
	}else if (document.body){
		return document.body.clientWidth;
	}		
	return 0;
}

function setLayout(path){
	var browserWidth = getBrowserWidth();
        var link = '<link rel="stylesheet" type="text/css" href="' + path;
	if (browserWidth < 1030){
    		document.write(link + 'layout/small.css"/>');
	}else{
    		document.write(link + 'layout/large.css"/>');
	}
}

