$(document).ready(function()
{
	$('img[class="offer-image"]').livequery(function()
	{
		var id = $(this).attr("id");
		$(this).bt(
		{
			contentSelector: "$('div#" + id + " table').html()",
			trigger: 'hover',
			width: 270,
			fill: '#FFF',
			cornerRadius: 20,
			strokeWidth: 0,
			shadow: true,
			shadowOffsetX: 3,
			shadowOffsetY: 3,
			shadowBlur: 8,
			shadowColor: 'rgba(0,0,0,.9)',
			shadowOverlap: false,
			noShadowOpts: {strokeStyle: '#999', strokeWidth: 2},
			positions: ['right'],
			cssClass: 'tip-info'
		});
	});
});
