jQuery(document).ready(function() {
	setInterval("funcD4W4()", 3000);
});

function funcD4W4() {
	var pokText=$('#rotate-desc').text();

	switch(pokText)
        {
	        case "Dinámicas":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Inventivas").fadeIn('slow');
			});
	        	break;
 		case "Inventivas":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Luchadoras").fadeIn('slow');
			});
	            	break;
 		case "Luchadoras":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Con Experiencia").fadeIn('slow');
			});
	            	break;
 		case "Con Experiencia":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Solidarias").fadeIn('slow');
			});
	            	break;
 		case "Solidarias":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Divertidas").fadeIn('slow');
			});
	            	break;
	        case "Divertidas":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Inteligentes").fadeIn('slow');
			});
	        	break;
 		case "Inteligentes":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Libres").fadeIn('slow');
			});
	            	break;
 		case "Libres":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Con Esperanza").fadeIn('slow');
			});
	            	break;
 		case "Con Esperanza":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Sensibles").fadeIn('slow');
			});
	            	break;
 		case "Sensibles":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Dispuestas").fadeIn('slow');
			});
	            	break;
 		case "Dispuestas":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Inquisitivas").fadeIn('slow');
			});
	            	break;
 		case "Inquisitivas":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Entusiastas").fadeIn('slow');
			});
	            	break;
 		case "Entusiastas":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Seguras").fadeIn('slow');
			});
	            	break;
 		case "Seguras":
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Dinámicas").fadeIn('slow');
			});
	            	break;
            	default:
			$('#rotate-desc').fadeOut('slow',function() {
				$('#rotate-desc').text("Dinámicas").fadeIn('slow');
			});
        }
}

