// JavaScript Document

jQuery(function(){
		 
		   jQuery('#navigation li a').append('<span class="hover"></span>')
		   
		   jQuery('#navigation li a').hover(function() {
	        
		// Stuff that happens when you hover on + the stop()
		jQuery('.hover', this).stop().animate({
			'opacity': 1
			}, 700,'easeOutSine')
	
	},function() {
	
		// Stuff that happens when you unhover + the stop()
		jQuery('.hover', this).stop().animate({
			'opacity': 0
			}, 700, 'easeOutQuad')
	
	})
		   });

//Stuff for the Lower Navigation

jQuery(function(){
		 
		   jQuery('#lowernavigation li a').append('<span class="hover"></span>')
		   
		   jQuery('#lowernavigation li a').hover(function() {
	        
		// Stuff that happens when you hover on + the stop()
		jQuery('.hover', this).stop().animate({
			'opacity': 1
			}, 700,'easeOutSine')
	
	},function() {
	
		// Stuff that happens when you unhover + the stop()
		jQuery('.hover', this).stop().animate({
			'opacity': 0
			}, 700, 'easeOutQuad')
	
	})
		   });