// JavaScript Document

$(document).ready(function(){
	$(".cuerpo").hide();


	$(".facultad .cabeza").click(function(){
		$(".cuerpo").hide("fast");
		if ($(this).next("div.cuerpo").css("display")=="none")
			$(this).next("div.cuerpo").show("fast");
	});
});
