function prepareItemList(input){
	jQuery.blockUI();
	$.ajax({type:"POST", async: false, url: wybo4me.siteurl+'/buys/getitemnames' , data: null,
		success: function(response) {
			input.autocomplete(response.split(","));
			jQuery.unblockUI();
		}
	}); 
}

function prepareElementList(){
	$('.premium_star').each(function(){
		
		var table = $(this).siblings('table.spreeitem');
		//alert(table.offset().top +' ' + $(this).offset().top);
		
		var top = table.offset().top - $(this).offset().top -10;
		var left = table.offset().left - $(this).offset().left -15;
		$(this).css({position: 'relative', left: left+'px', top: top+'px'});
	});
}