$(document).ready(function() {	$('.toolTip').hover(		function() {		this.tip = '<img src="images/midwestmap.jpg" width="400px" align="left"></img>'; 		//this.tip = this.title;		$(this).append(			'<div class="toolTipWrapper">'				+this.tip			+'</div>'		);		this.width = $(this).width();		$(this).find('.toolTipWrapper').css({left:this.width-322})		$('.toolTipWrapper').fadeIn(300);	},	function() {		$('.toolTipWrapper').fadeOut(100);		$(this).children().remove();			//this.title = this.tip;		}	);});