// JavaScript Document

$(document).ready(function(){
 
	$("#biz-bar a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "25"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "25"}, "fast");
	});
 
 
});