function getSpeed(id){	switch(id) {		    	case "como":    		return 1500;    				case "cual": 			return 1000;					case "que": 			return 1700;		case "donde": 			return 1500;		case "significado": 			return 1500;					case "valores": 			return 1500;    }}$(document).ready(function() {		$("div.texto_respuesta, div.texto_principal").hide();	jQuery.fn.slideFadeToggle = function(speed, easing, callback) {		return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);	};	          $(".titulo_pregunta a, .titulo a").click(function () {        //$("div.texto_respuesta#"+$(this).attr('rel')).toggle("slide",  {direction: "up", easing:'jswing'}, 10000);    	$(this).blur();    	var id = $(this).attr('rel'); 	    	$("div#"+id).slideFadeToggle(getSpeed(id),"easeOutCubic");        if ($(this).attr('class') == 'minus')        {        	$(this).removeAttr('class');        }        else        {        	$(this).attr('class','minus');        }        return false;      });});
