$(document).ready(function(){
	// Hide all of th elements with the class intro-text
	$(".intro-text").hide();
	
	// Toggle the component with the class intro
	$(".intro").click(function(){
	    if($(this).next(".intro-text").css("display") == "block"){
	    	$(this).next(".intro-text").slideUp("slow");
	    }
	    else{
	    	$(this).next(".intro-text").slideToggle('slow');
	    }
	    
		
		return false;
	});
});

