var $j = jQuery.noConflict();
$j(document).ready(function()
{
		$j('#free-delivery').hover(function()
		{
		$j(this).animate(
			{
			top:'-100px'
		}
		,
			{
			duration:1000,queue:false,"easing":"easeOutElastic"
		}
		)
	}
	,function()
		{
		$j(this).animate(
			{
			top:'-266px'
		}
		,
			{
			duration:1000,queue:false,"easing":"easeOutElastic"
		}
		)
	}
	);
	}
);

