var locs = new Array({l: 103, t: 103},{l: 178, t: 83},{l: 87, t: 99},{l: 167, t: 188},{l: 130, t: 281});
$(function() {
	$('#sdemo a').show().mouseover(function() {
		var num = parseInt($(this).attr('id').substr(2)) - 1;
		$('#sdemo div').css({left: locs[num].l, top: locs[num].t}).append($(this).html()).show();
		
	});
	$('#sdemo div').mouseout(function() {
		$(this).empty();
	});
	$('#spaDetails_ltcol_content').append('<p><br /><strong>Try our interactive spa seating demo.</strong></p>');
});