$(function()
{
  EnlargeContentDiv();

  $("a[rel=colorbox]").colorbox({current:"",previous:"",next:""});  
});

function EnlargeContentDiv()
{
  var cr_h = $("#column_right").height();
  var cl_h = $("#column_left").height();
  
  if (cr_h < cl_h)
  {
    $("#column_right").css("height", cl_h + "px");
  }

  var h = $("#column_right").height();
  var h1 = $("#upper_block").height();
  
  var content_h = h - h1 - 10 - 40 - 1; //-padding - border-top
  
  $("#content").css("height",content_h + "px");
  
  var b_h = $("#blocks").height();
  
  if (b_h == 0)
  {
    b_h = 30;
    $("#blocks").css("height",b_h + "px");
  }
  
  content_h -= b_h;
  content_h += 20;
  
  $(".holder").css("height",content_h + "px");
}
