$(function() {
  $.preload('img', {
    onFinish: function() {
      lavy_stlpec();
    },
    onComplete: function() {
      lavy_stlpec();
    }
  });
  
  
  jQuery('a[@rel*=facebox]').facebox();
  
  contr = $("#column_right .content").innerHeight();
  $("#column_right .content_bg").height(contr);
  
  $("ul li").hover(
    function(){
      $(this).children().filter("ul").css({visibility:"visible"});
    },
    function(){
      $(this).children().filter("ul").css({visibility:"hidden"});
    });
  
});

function lavy_stlpec(){
  cont = $("#page_content").innerHeight();
  $("#column_left .content_bg").height(cont);
  
  $("#page_content").css($("#column_left .content_bg").position());
  $("#page_content").show();
}