$(document).ready(function() {
	var theTitle = "";
	$(".boatroll").hover(function(e){	
		var theContent =  '<div id="boatroll"><img src="/images/fleet/rollovers/' + $(this).attr('rel') + '.jpg" /></div>';
		$("body").append(theContent);
		theTitle = $(this).attr('title');
		$(this).attr('title', "");
		$("#boatroll").css("top",(e.pageY + -100) + "px").css("left",(e.pageX - 320) + "px").css("display", "block");		
    },
	function(){
		$("#boatroll").remove(); 
		$(this).attr('title', theTitle); theTitle = "";
	});
	$(".boatroll").mousemove(function(e){
		$("#boatroll").css("top",(e.pageY + -100) + "px").css("left",(e.pageX - 320) + "px");
	});			

}); 

