$(document).ready(function() {
	navigationPrimary();
});

function navigationPrimary() {
	$('#pasta li').removeClass('hover');
	$('#pasta li a')
		.css({ opacity: 1.0 })
		.mouseover(function() {				
			$(this).stop().animate(
				{ opacity: 0.0 }
			, 400);
		})
		.mouseout(function() {
			$(this).stop().animate(
				{ opacity: 1.0 }
			, 1200);
		});
}



$(document).ready(function() {
	$('#subir').click(function(){ //Id del elemento cliqueable
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});
});

