// JavaScript Document
$(function () {
	if ($.browser.msie && $.browser.version < 7) return;
	$('#menu a span').each(function(){
		$(this).css('opacity', 0);
		$(this).css('display','block');
		$(this).hover(
			function () {
					// on hover
					$(this).stop().fadeTo(450, 1);
			}, function () {
					// off hover
					$(this).stop().fadeTo(450, 0);
		});
	});					
});
