$(document).ready(function () {
    $.localScroll();
    $('p.nav a')
		.hover(function() { 
			$(this).stop(true, true).animate({ backgroundColor: 'bluefull' }, 'fast');
		}, function() { 
			$(this).stop(true, false).animate({ backgroundColor: 'greyfull' }, 'normal');
		});
	$('ul.descargas a')
		.hover(function() { 
			$(this).stop(true, true).animate({ opacity: 0 },'fast');
		}, function() { 
			$(this).stop(true, false).animate({ opacity: 1 }, 'fast');
		});
});