// JavaScript Document

$(function(){
	     $('.main-menu-ul > li > ul').hover(function () {
		 var $this = $(this);
		 var $main_height = $this.outerHeight();
		 if ($this) {
		 $this.css("z-index", "2");
		 $this.stop(true,false).animate({'top' : '-' + ($main_height-39) + 'px'}, 300);
		 }
		 }, function(){
		 var $this = $(this);
		 if ($this) {
		 $this.css("z-index", "auto");
		 $this.stop(true,false).animate({'top' : '0px'}, 300);
		 }
		 });
						
});	

