// JavaScript Document

$(document).ready(function() {
						   
	$('#hb_con a span').css('opacity', '0');
						   

	$('#hb_con a span').hover(function() {
		$(this).stop().animate({opacity:1}, "slow");
									   },
									   
		function() {
			$(this).stop().animate({opacity:0}, "slow");
		});
		
						   });
	
	
	
