
$(document).ready(function(){
	var scolor=$('p').css('color'); 
	lcolor = new Array('#9E9ECA','#A4D8E9','#ABD6B6','#F2EEC0','#ECB3CB');
	
	$('body').removeClass('usehover');
	
	$('#navigation a').hover( 	
		function () {
			if ( $(this).parent().attr('class').split(' ').slice(-1) != 'current') 
				$(this).animate({color: lcolor[$(this).parent().attr('class').substr(-1)]}, 500); 
		},
		function () {
			if ( $(this).parent().attr('class').split(' ').slice(-1) != 'current') 
				$(this).animate({color: 'black'}, 500);
		}
	);

   	$('p').hover( 	
		function () {
			$(this).animate({color: 'black'}, 500); 
		},
		function () {
			$(this).animate({color: scolor}, 500);
		}
	);
});



