$(document).ready(function(){
		$(".slidev ul").hide()
		.parent().click(function(){
						$(this).children("ul").slideDown("slow");
		})
		.hover(function() {}, function() {
						$(this).children("ul").slideUp("slow");
						})
		.end();
});
