$(document).ready(function(){
		$("#tabletas table").hide();
		$("#tabletas h2").click(function(){
			$(this).next().slideToggle();
			return false;
		});
})