window.addEvent('domready', function() {
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 changeLayout(description){
//   var i, a;
//   for(i=1; (a = document.getElementsByTagName("link")[i]); i++){
//	   if(a.getAttribute("title") == description){a.disabled = false;}
//   }
if (description=='low') {
document.getElementsByTagName("link")[1].href='/Css/800x600.css';
w='500';
}
if (description=='mid') {
document.getElementsByTagName("link")[1].href='/Css/default.css';
w='730';
}
}
var dyncss = function() {
var browserWidth = getBrowserWidth();
if (browserWidth < 960){changeLayout('low');}
else if (browserWidth >= 960){changeLayout('mid');}
}
dyncss();
window.addEvent('resize', dyncss);
});
