$(function() {
		   
// set opacity to nill on page load
$("#badge span").animate({
	opacity: 0
});

// on mouse over
$("#badge").hover(function () {
// animate opacity to full
	$("#badge span").stop().animate({
		opacity: 1
		}, 250 );
	},

// on mouse out
function () {
	// animate opacity to nill
	$("#badge span").stop().animate({
		opacity: 0
		}, 500 );
	});

});
