	$(document).ready(function(){
		$('#menu2').mouseover(function() {
  $('#menu2 ul').stop().animate({
    height: '165'
  }, 300);
});
		$('#menu2').mouseout(function() {
  $('#menu2 ul').stop().animate({
    height: '0'
  }, 300);
});					   

		$('#menu5').mouseover(function() {
  $('#menu5 ul').stop().animate({
    height: '196'
  }, 300);
});
		$('#menu5').mouseout(function() {
  $('#menu5 ul').stop().animate({
    height: '0'
  }, 300);
});					   
});