		$(document).ready(function(){
			$('.usesTip1').hover(function(){
				$(this).SpitLoot({
					action: 'show',
					fadeSpeed:5,
					anchor: 'cursor'
				});
			},function(){
				$(this).SpitLoot({action:'hide'});
			});
			$('.usesTip2').hover(function(){
				$(this).SpitLoot({
					action: 'show',
					fadeSpeed:5,
					anchor: 'this'
				});
			},function(){
				$(this).SpitLoot({action:'hide'});
			});
			$('.usesTip3').hover(function(){
				$(this).SpitLoot({
					action: 'show',
					fadeSpeed:5,
					anchor: '.anchorTest'
				});
			},function(){
				$(this).SpitLoot({action:'hide'});
			});
		});


