// JavaScript Document

$(function(){
		 
		
		$('#menu a').each(function(){
			if (!$(this).find('span').size())
				$(this).append('<span class="hover"></span>')
			})
		/*   
		$('#menu a').hover(function() {
	        
		// Stuff that happens when you hover on + the stop()
		$('.hover', this).stop().show()
		/*.animate({
			'opacity': 1
			}, 700,'easeOutSine')
	 
	},function() {
	
		// Stuff that happens when you unhover + the stop()
		$('.hover', this).stop().hide()
		/*.animate({
			'opacity': 0
			}, 700, 'easeOutQuad')
		 
	})

	/**********************************************/
	/*
	$('#menuImage a').hover(function() {
	    $('.hoverImg', this).stop().show()
		/*.animate({
			'opacity': 1
			}, 700,'easeOutSine')
			 
	},function() {
		$('.hoverImg', this).stop().show()
		/*
		.animate({
			'opacity': 0
			}, 700, 'easeOutQuad')
		 
	})
	*/
});
