$(document).ready(function(){
$(".expanded").hide(1);	
$("a.mostrar").click(function(){				  
		$(this).next("div.expanded").slideToggle(500).siblings("div.expanded").slideUp("slow");
	});
});


