// JavaScript Document

$(document).ready(function(){
	
		$("#textoHome h2:lt(4)").next().slideDown("slow");
		$("#textoHome h2:lt(4)").addClass("cc");
		
		
		$("#textoHome h2").click(function(){
			$(this).next().slideToggle("slow");
			return false;
		})
	});

$(document).ready(function(){

		$("#textoContent h2").click(function(){
			$(this).next().slideToggle("slow");
			return false;
		})
	});
