// FADING SPRITES
$(document).ready(function(){
	
	$('#navigation ul.menu li a').append('<span class="hover"></span>')
	
	$('#navigation ul.menu li a').hover(function() {
	// Stuff that happens when you hover on + the stop()
	$('.hover', this).stop().animate({
		'opacity': 1
	}, 100,'easeOutSine')
	
	},function() {
	// Stuff that happens when you unhover + the stop()
	$('.hover', this).stop().animate({
		'opacity': 0
	}, 2000, 'easeOutQuad')
	
	})
 });
