function getcss(cssfile) {
	loadcss = document.createElement('link');
	loadcss.setAttribute("rel", "stylesheet");
	loadcss.setAttribute("type", "text/css");
	loadcss.setAttribute("href", cssfile);
	document.getElementsByTagName("head")[0].appendChild(loadcss);
	}

if(window.innerWidth < '1100') {
	getcss('/media/layout/small.css');
	}

if(screen.availWidth < '1200') {
	getcss('/media/layout/small.css');
	}


