window.attachEvent('onload', mmwidth);
window.attachEvent('onresize', mmwidth);
function mmwidth(){
if($('html').width()<1000)
{
    $('body').width('999');
}
else
{
   $('body').width('100%');  
}
}

