$(document).ready(function() {
	
	$('#navigation li a').hover(
 
		function() {
			$(this).animate({'backgroundColor':'rgba(204,204,204,1)'},'fast');
		}, 
 
		function() {
 
			$(this).animate({'backgroundColor' :'rgba(238,238,238,1)'},'fast');
 
		}).mousedown(function() {
 
			$(this).stop().animate({'backgroundColor': 'rgba(217,95,23,1)'}, 'fast');
 
		}).mouseup(function() {
 	
			$(this).stop().animate({'backgroundColor': 'rgba(238,238,238,1)'}, 'fast');
		}
	);
	
	$('#shine').animate({backgroundPosition: '400px 0px'},{duration:5000});
	
	$.localScroll({
	    easing:'easeOutQuint',
	    duration:1000
	});
	
});
