$(document).ready(function(){
	$("#navti li").hover(function(){
	$(this).children("ul").slideDown('slow');
		},function(){
	$(this).children("ul").slideUp('slow');
	});
});

