jQuery(document).ready(function(){
	$("#over-acc span").hover(
		function(){
			$(this).find("div").attr({
				"style": 'display:inline'
			});
			$(this).find("div").animate({opacity: 1}, {queue:false, duration:1});
		}, 
		function(){
			$(this).find("div").animate({opacity: 0}, {queue:false, duration:1, complete: function(){
								$(this).attr({"style": 'display:none'});
							}
						}
			);
		});
});
