//meftec12.js

		$(function(){
			
			$("#menu li li a.on").parent().parent().parent("li").children("a").addClass("on");
			
			//animate the drop down and add top level class
			$('#menu li').hover( function () {  
				//show its submenu  
				$(this).addClass("active");
				$('ul', this).stop(true,true).slideDown(500);  
			}, function () {  
				//hide its submenu  
				$(this).removeClass("active");
				$('ul', this).stop(true,true).slideUp(500);           
			});
			
		});
