jQuery(document).ready(function(){
	
	$('#status').hide();
		
	$("#nav li.msg").hover(
		function(){
			
			$('#status').show();
			
			var msg = $(this).attr('title');
			$('#status').text(msg).animate({opacity: 1}, { duration: 500, queue: false }, "linear");
		},
		function(){
			$('#status').animate({opacity: 0}, { duration: 500, queue: false }, "linear");
		}
	);
});
