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