// JavaScript Document

 jQuery(document).ready(function(){
	
	
	$('#contenido #programa h6').click(function() {
		$(this).next().toggle("slow");
		return false;
	}).next().hide();
	
});