$(document).ready(function(){
  

  
  	$("#result").html("<span >" + pantallaimg + " --- " + pantallaestado + "</span>.");
    $(".prev").click(function(){
		if ( pantallaestado == 1) {
			
		}	
		else {
			pantallaestado = pantallaestado - 1;
			$("#portada").animate({"left": "+=350px"}, "fast");
			$("#portadatext").animate({"top": "+=210px"}, "fast");
		}
		$("#result").html("<span >" + pantallaimg + " --- " + pantallaestado + "</span>.");
	});
		
	
		
    $(".next").click(function(){
		if ( pantallaestado == pantallaimg) {
			
		}	
		else {
			pantallaestado = pantallaestado + 1;
			$("#result").html("<span >" + pantallaimg + " --- " + pantallaestado + "</span>.");
			$("#portada").animate({"left": "-=350px"}, "fast");
			$("#portadatext").animate({"top": "-=210px"}, "fast");
		}	
	
	

	});		
	  	if ( hayslider == 1) {
	$(("#time")).fadeOut(1000,
		function () {
			$(("#slidercap")).fadeOut(16000);
		}
	);
	}	
// Fin
});