$(document).ready(function() {
	$('.toolTip').children('a').click(
		function() {
		$(this).parent().parent().children().children().remove('div');
		$(this).parent().append(
			'<div class="toolTipWrapper">'+$('#'+this.title).html()+'</div>'
		);
		//this.title = "";
		this.width = $(this).width();
        
		if($(this).attr('name') == 'bottom')
		    $(this).parent().find('.toolTipWrapper').css({top:-14});
		     
		//$(this).parent().find('.toolTipWrapper').css({left:75});    
		$('.toolTipWrapper').fadeIn(300);
		
	},
	function() {
		$('.toolTipWrapper').fadeOut(100);
		$(this).parent().children().remove('div');
		}
	);
	
	$('.toolTip').children('a').blur(function(){
		setTimeout("$('.toolTipWrapper').hide()",1000);
		setTimeout("$(this).parent().children().remove('div')",1000);

		//$('.toolTipWrapper').fadeOut(500).delay(500);
		//$(this).parent().children().remove('div');
	});
	
	
	
	
	
});
