$(document).ready(function(){
  var resize = function(){
    var w = $(window).width();
    if(w < 1280){
      $('#hhome').css({'margin-left': (-1280+w)/2});
      console.log(w);
    }else{
      $('#hhome').css({'margin': '0 auto'})
    }
  };
  
  $(window).bind('resize', function(){
		resize();  
  });
  resize();
});
