$(document).ready(function(){
	$("a[@rel = 'menu']").click(function(){
		$("a[@rel = 'menu']").each(function(){
			$("p.menu > span:visible").each(function(){
				$(this).slideUp("slow");
			});
		});
		$(this).parent("p.menu").children('span').each(function(){
			$(this).toggle('slow');
		});
		return false;
	});

});

