function resize(){
  var height=$(window).height();
  var height2=$(document).height();
  
  $(".bg_left").height(height);
  $(".bg_right").height(height);
  $(".shine").height(height);
  $(".splinter").height(height); 
  $(".top_left_image").height(height);
  $(".bottom_right_image").height(height);
  $(".bottom_center_image").height(height); 
  
  $(".bg_left_content").height(height2);
  $(".bg_right_content").height(height2); 
  $(".content_left_top").height(height2);
  $(".content_left_top2").height(height2);
  $(".catalog_left").height(height2);
  $(".content_bottom").css({top:(height2-209)+"px"});
  $(".splinter_c").height(height2);
}

$(function(){
  resize();
  
  $(".menu_o").hover(function(){
    var id=$(this).attr('rel');
    $(".menu_h"+id).show();
  },function(){
    $(".li_menu").hide();
  });
});

$(window).resize(function(){
  resize();
});
