/*function resizeMain() {
  if ($("#content_area_content").height() > 350) {
    $("#content").css({
      'height' : $("#content_area_content").height() + 155
    });
    
    $("#left").css({
      'height' : $("#content_area_content").height() + 5
   });
  } else {
    $("#content").css({
      'height' : 500
    });
    $("#left").css({
      'height' : 350
   });
    
  }
 
}*/

$(document).ready(function() {
  //resizeMain();
 
  
  $('#jsddm > li').bind('mousemove', jsddm_open);
  $('#jsddm > li').bind('mouseout',  jsddm_timer);
  $('#jsddm > li > ul > li > a').bind('click', jsddm_close);
  $(document).bind('click', jsddm_close);
  
});


