$(document).ready(function(){


  initDesign();
  $("a.catablog-image").fancybox();



});


function initDesign(){

  var head = $("#head").height();
  var body = $("#body").height();
  var menu_height = $("#menu").height();

  if(head + body > menu_height){

    var dif = head + body - menu_height;

    var top = $("#bookTop").height() + $("#menu ul").height();



    $("#booksBottom").height($("#booksBottom").height() + dif);


  }else{


  }





}
