$(document).ready(function() {  
	$("#globalnav span").css("display","block");
	$("#globalnav span").css("opacity","0");
	
	$("#globalnav span").hover(function(){
		$(this).stop().animate({
			opacity: 1
		}, 500);
	},
	function () {
		$(this).stop().animate({
			opacity: 0
		}, 500);
	});
	$(".u#globalnav span").hover(function(){
		$(this).stop().animate({
			opacity: 1
		}, 500);
	},
	function () {
		$(this).stop().animate({
			opacity: 0
		}, 500);
	});
});

$(document).ready(function() {  
	$('.container > ul').tabs({ fx: { opacity: 'toggle' } });  
});
