
$(document).ready(function(){




var ua = navigator.userAgent;


if (ua.search(/MSIE/) > 0)
{
   if(screen.width < 1280 )
     {
       $('body').css({"overflow-x":"hidden"});

     }
}


});






















