/*
 * $Date: 2009/08/06 08:58:05 $
 * $Revision: 1.3 $
 */
/*
$(window).load(change_content_height);
$(window).resize(change_content_height);
*/
function change_content_height ()
{
  var wrapper_height = $('#wrapper').height();
  var window_height  = window.innerHeight || document.documentElement.clientHeight;

  var channel_category_div = document.getElementById('0_casual');

  window_height -= 155;

  if (wrapper_height < window_height)
  {
      $('#div_overlay').height(window_height - wrapper_height);
  }
  else if (channel_category_div)
  {
      $('#div_overlay').height($('#content').height() -
                               $(channel_category_div).height() + 150);
  }
}
