// boton "volver arriba"
$(document).ready(function() {
	$('#gototop').fadeOut("fast");
	$('#gototop').css({'position' : 'fixed', 'right' : '20px', 'bottom' : '20px'});
	// mostrar y esconder enlace volver arriba
	$(window).scroll(function () {
		if ($(window).scrollTop() >= 500) {
			$('#gototop').fadeIn("slow");
		} else {
			$('#gototop').fadeOut("slow");
		}
	});
	$('a[href*=#]').bind("click", function(event) {
		event.preventDefault();
		var ziel = $(this).attr("href");
		$('html,body').animate({
			scrollTop: $(ziel).offset().top
		}, 1000 , function (){location.hash = ziel;});
	});
	return false;
});

// borrar texto por defecto en campo de texto
function removeinput(x) {
	if (x.value != '') {
	x.value = '';
	}
}

