/* 
 * 
 *  This file is part of the (c) Smartlinks Softwares.
 * 
 *  For the full copyright and license information, please view the LICENSE
 *  file that was distributed with this source code.
 *  Support: Equipe de Suporte <suporte at smartlinks.com.br>
 * 
 *  Copyright 2010 (c) Smartlinks Softwares
 *  All rights reserved.
 */
$(function() {
		// set opacity to nill on page load
		$("div#menu ul span").css("opacity","0");
		// on mouse over
		$("div#menu ul span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, "slow");
		});
	});
