// JavaScript Document

$(document).ready(function() {
						   
	$(".tooltip_raceworld").each(function() {
	
		$(this).qtip({
		
			content: $("#"+$(this).attr("rel")).html(),
			
			style: { background: '#FFFFFF', color: 'black', border: {
				
				width: 5, radius: 10, color: '#999999'
				
			}, width: 400, tip: 'leftBottom', name: 'cream' },
			   
			position: { corner: { target: 'rightTop', tooltip: 'leftBottom' } },
			
			show: 'mouseover',
			
			hide: { when: 'mouseout', fixed: true, delay: 1000  }
			
		});
			
	});

});
