$(document).ready(function(){
	$('#navbarv li:has(ul) > a').click(function(){
		$(this).next().slideToggle(1000);
		return false;
	});
});
