// Animator menu de Dragu Costel
// Versiune 1

$(function() {
 if($("#IMO_RedMenu").length > 0 ) {
  $("#IMO_RedMenu").lavaLamp({
   fx: "backout", 
   speed: 700,
   click: function(event, menuItem) { return true; }
            
   });
 }

if($("#IMO_MainBody").length > 0 ) {
  if($("#IMO_MainBody").height() < $(window).height()) {    
     $("#IMO_MainBody").css('height',$(window).height()+'px');
  }

}

});

$(window).resize(function() {

    if($("#IMO_MainBody").height() < $(window).height()) {
     $("#IMO_MainBody").css('height',$(window).height()+'px');
  }


})


