$(document).ready(function(){
    
	$("#camadas div.det_cam").hide();
	
	$('div#camadas:eq(0)> table').click(function() { $(this).slideUp("slow").next(".det_cam").slideDown("slow"); });
	
	$('div.det_cam a.hide').click(function() { $(this).parent().slideUp("slow").prev(".info_c").slideDown("slow"); });
	
	$("#fotos div.alb_head").click(function() { $(this).next(".album").slideDown("slow"); });
	
	$("a.close_alb").click(function() { $(this).parent().slideUp("slow");  });
	
});
