$(document).ready(function() {

	$(".tooltipped").hover(
		function() { $(this).contents("div.tooltip").css({display: "block" }).fadeIn(); },
		function() { $(this).contents("div.tooltip").css({display: "none" }).fadeOut; }
	);
	$(".tooltipped").mousemove(function(pos) {
		var mousex = pos.pageX - 75;
		var mousey = pos.pageY + 22;
		$(this).contents("div.tooltip").css({  top: mousey, left: mousex });
	});
	
	$("img").removeAttr("title");
	$("img").removeAttr("alt");
	$("a").removeAttr("title");
	$("a").removeAttr("alt");	
	
});


