// JavaScript Document

$(document).ready(function(e) {
    $('#menu li a').append('<span class="hoverb spriteone"></span>')
	
	
	$('.hoverb', this).stop().css({
			'opacity': 0
		}, 350);
	
	
	$('#menu li a:not(.selected)').hover(function() {
		$('.hoverb', this).stop().animate({
			'opacity': 1
		}, 350,'easeOutSine')
	
	},function() {
		$('.hoverb', this).stop().animate({
			'opacity': 0
		}, 350, 'easeOutQuad')
	})
});


