$(document).ready(function(){

	$.debug(true);
	/* DEBUGGING TOOLS
    $.log("plain debug message" + test2);
    $('#toolbar').log();
    $('#toolbar').log("with message");
    */

	

$('a').hover(
	function(){ $(this).stop().animate({'color':'#FC0'},200); },
	function(){ $(this).stop().animate({'color':'#888'},500); }
	);
	
	
	
	


	
$('#content img').tooltip({ 
    track: true,
    top: -45,
    left: 10,
    delay: 1000,
    bodyHandler: function() { return $(this).attr("test") + '<br />' + $(this).attr("medium"); },
    showURL: false, 
    showBody: " - ", 
    fade: 175
});



});
