$(document).ready(function() { 	
	$("#buttons span").hide(); //Hide all content
	$("#buttons ul li").mouseover(function() {
		var activeTool = $(this).find("span"); 
		$(activeTool).fadeIn();
		return false;
	});
	$("#buttons ul li").mouseleave(function() {
		var activeTool = $(this).find("span");
		$(activeTool).fadeOut(); 
		return false;
	});
	
});  

