//var PHPURL = "../tarotygratis/functions.php";

$(document).ready(function() {

<!-- REMEMBER -->
var hash= location.hash;
var vcomment = location.href.indexOf("/comment-page-");

if (hash && vcomment > 0){
	
	$("div[class='remember']").append('<br/><p>Si has realizado una petición de lectura de Tarot gratis,'+ 
	' no olvides volver a visitar de vez en cuando <a href="http://www.tarotygratis.com">la página principal</a>'+
	' para ver si tu consulta ha sido resuelta. </p><p>Puedes resaltar tu comentario votándolo <strong>pulsando sobre el corazón</strong> que tiene al lado (Máximo de un voto por día). </p>'+
	'<p><a href="#" id="favorites" title="Añadir Tarot y Gratis a Favoritos">¡Añade la página a tus favoritos para no perderla!</a></p>');
}
<!-- /REMEMBER -->
						   
$("ul[class='categoria_peticion']").hide();

$('#favorites').click(function(event){
	event.preventDefault();
	window.external.addFavorite("http://www.tarotygratis.com","Tarot y Gratis. Lectura de Tarot gratuita");
});


$(".toogleDiv").live("click", function() {

	var toggle = $(this).attr("id");
	
	$("[class='"+toggle+"']").toggle();
});

if ($("input#userLogged").val() == "n") {
	$("input#submit").attr("disabled", "disabled");
}

	$("textarea#comment").keyup(function()
	{ 
		var valor = $(this).val()
		
		if ($("input#userLogged").val() == "n") {
			
			if (valor == '')
			{
				$("input[name='submit']").attr("disabled", "disabled");
			}
			else
			{
				var length = valor.length;
				
				
				if (length > 250)
				{
					$("span#countLetters").html("<span style='color:green'>" + length + "</span>");
					$("input[name='submit']").removeAttr("disabled");	
				}
				else
				{
					$("span#countLetters").html("<span style='color:red'>" + length + "</span>");				
					$("input[name='submit']").attr("disabled", "disabled");	
				}
			}
		}
	}); 

});