jQuery.fn.reset = function () {
  $(this).each (function() { this.reset(); });
}

function showNotice(){
	$('#notice').show();
	$("#notice").fadeOut(800).fadeIn(800).fadeOut(400).fadeIn(400).fadeOut(400).fadeIn(400);
}

function blog(){
	// Se esconde el indicador
	$('#indicator').hide();
	$("#notice").hide();
	// Se cambia el valor del input al clickar
	$('#texto').click(function(){
		if ($('#texto').attr('value')=="Buscar...") {
			$('#texto').attr({value: ""});
		}
	});
	// Se cambia el valor del input al salir
	$('#texto').blur(function(){
		if ($('#texto').attr('value').replace(' ','')=="") {
			$('#texto').attr({value: "Buscar..."});
		}
	});
	// Comportamientos Búsqueda:
	//	- Ajax start: 
	$("#formAJAX").ajaxStart(function(){
		$('#indicator').show();
		$('#encontrados').hide();
	});
	//	- Ajax success:
	$("#formAJAX").ajaxSuccess(function(){
		$('#indicator').hide();
		$('#encontrados').show();
	});
}
