$(document).ready(function(){

   if($(window).width() < 1132) {
           $(".main-site").css('margin', '10px ' + (($(window).width() - 1000)/2) + 'px');
   }

   $('#prices').parent('td').hover(
        function(){
            $(this).find('ul').show();
        },
        function(){
            $(this).find('ul').hide();
        }
   );

   $(window).resize(function(){
        if($(window).width() < 1132) {
            $(".main-site").css('margin', '10px ' + (($(window).width() - 1000)/2) + 'px');
        }
        else {
            $(".main-site").css('margin', '10px 54px');
        }
    });
});




