function cerrarModal(){
	$('#trama').fadeOut('slow');
}
//To do after loading HTML
$(document).ready(function()
{
	$('#email').focus(function() {
		this.value='';
	});

// boton volver arriba
	$('#gototop').fadeOut("fast");
	$('#gototop').css({'position' : 'fixed', 'left' : '0', 'right' : '0', 'bottom' : '0'});

// mostrar y esconder enlace volver arriba
	$(window).scroll(function () {
		if ($(window).scrollTop() >= 500) {
			$('#gototop').fadeIn("slow");
		} else {
			$('#gototop').fadeOut("slow");
		}
	});

// Smooth scrolling #
	$('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;});
	});	

	$('a[href*=#newsletter]').bind("click", function(event) {
		event.preventDefault();
		$('#newsletter').css({ 'color' : '#000', 'background-color' : '#c5eb2c'});
		$('#email').focus();
		});

});

