$(document).ready(function(){
	//acilan menu 
	$('#menualani ul li a[rel="alt"]').parent().hover(function(){ 
	if($(this).children(':last').queue("fx").length < 1){ 
			$(this).addClass('on'); 
			$(this).children(':last').show(250); 
		} 
	}, 
	function(){
		$(this).removeClass('on'); 
		$(this).children(':last').slideUp(50, function(){ 
			$(this).parent().removeClass('popup'); 
			
		}); 
	});	
});