$(document).ready(function() {
	var aDivs = $("#creative div, #creative p, #creative dl");
	aDivs.filter("[title=Featured Website: Click to Expand]").addClass("focused");
	
	aDivs.click(
		function() {
			aDivs.removeClass("focused");
			aDivs.filter("[title=" + $(this).attr("title") + "]").addClass("focused");
		}
	);
	$("body").append("<div id='tooltip'></div>");
  	$("a[title]").each(function() {
    	$(this).hover(function(e) {
     	 $().mousemove(function(e) {
     	   var tipY = e.pageY + 16;
     	   var tipX = e.pageX + 16;
     	   $("#tooltip").css({'top': tipY, 'left': tipX});
      	});
      	$("#tooltip")
      	  .html($(this).attr('title'))
      	  .stop(true,true)
      	  .fadeIn("fast");
     	 $(this).attr('title', '');
   	 }, function() {
   	   $("#tooltip")
   	     .stop(true,true)
    	 .fadeOut("fast");
       $(this).attr('title', $("#tooltip").html());
    });
  });
});

