// JavaScript Document

$(document).ready(function(){

 function effect(var1){
  if(var1==1){
   $(".ss_menu3").stop(true).animate({'height':140+'px'},300);
  }
  else{
   $(".ss_menu3").stop(true).animate({'height':0+'px'},300);
  };
 };

 
 $(".ss_menu3").hover(
      function () {
  effect(1)
      }, function () {
  effect(0)
      }
    ); 
 $("#menu3").hover(
      function () {
  effect(1)        
      }, function () {
  effect(0)
      }
    );
 
});
