$(function(){
	$("#menu li:has(ul)").hover(
		function(){
			$(this).find("ul").stop(true, true).slideDown(150);
		},
		function(){
			$(this).find("ul").stop(true, true).slideUp(150);
		}
	);
        $("#menu li:has(ul) > a").click(function(e){
            e.preventDefault();
        });
	$("a[rel=\"urlblank\"]").click(function(e){
		e.preventDefault();
		window.open($(this).attr("href"), "_blank");
	});
});
