$(function() {
	$("#menu li.padre > a").click(function() {
		$(this).parent().find("ul").slideToggle(300);
	});
	$("#menu li.padre  > a").toggle(function() {
  			$(this).parent().find("a").css({backgroundImage:"url(/images/general/flecha_menu.gif)"});
  			$(this).parent().find("ul li a").css({backgroundImage:"none"});
		}, function() {
  			$(this).parent().find("a").css({backgroundImage:"url(/images/general/flecha_closed.gif)"});
  			$(this).parent().find("ul li a").css({backgroundImage:"none"});
		});
});
