function toggle()
{
  var height_m = jQuery('#front_mediation').height();
  var height_q = jQuery('#front_citation').height();
  var total_height = height_m + height_q + 142;
  var big_title1 = jQuery("#sidebar .big_title").get()[0];
  var big_title2 = jQuery("#sidebar .big_title").get()[1];
  if (jQuery("#welcome .text").css('height') != 'auto'){
    jQuery("#welcome").css('height',total_height);
    jQuery("#welcome .text").css('height','auto');
    jQuery(big_title1).addClass('short');
    jQuery(big_title2).removeClass('short');
    jQuery('.read').html("свернуть")
  }
  else {
    jQuery("#welcome").css('height','auto');
    jQuery("#welcome .text").css('height',height_m);
    jQuery(big_title2).addClass('short');
    jQuery(big_title1).removeClass('short');
    jQuery('.read').html("читать далее");
  }
}


jQuery(document).ready(function(){
  jQuery("#welcome .text").css('height',jQuery('#front_mediation').height());
});

function onWindowLoad ()
{
    jQuery.ImageBox.init({});
}

Limb.events.add_event(window, 'load',onWindowLoad);

