$(document).ready(function(){
		$(".show").show();
		$(".abrir").click(function(){
			var nome = $(this).attr("rel");
			$(".aberto").hide();
			$(".aberto[name='"+nome+"']").show();
		return false; });
		
	});	


