wraphandler={init:function(){if(!document.getElementById)return;wraphandler.setWrapper();wraphandler.addEvent(window,"resize",wraphandler.setWrapper)}setWrapper:function(){var theWidth=0;if(window.innerWidth){theWidth=window.innerWidth}else if(document.documentElement&&document.documentElement.clientWidth){theWidth=document.documentElement.clientWidth}else if(document.body){theWidth=document.body.clientWidth}if(theWidth!=0){if(theWidth<990){document.getElementById('wrapper').className='altwrapper'}else{document.getElementById('wrapper').className='mainwrapper'}}}addEvent:function(obj,type,fn){if(obj.attachEvent){obj['e'+type+fn]=fn;obj[type+fn]=function(){obj['e'+type+fn](window.event)}obj.attachEvent('on'+type,obj[type+fn])}else{obj.addEventListener(type,fn,false)}}}wraphandler.addEvent(window,"load",wraphandler.init);