$(function() {
	$.getJSON('shopdata.php?callback=?', function(data) {
		for (i in data.items) {
			$('#shop').append('<div class="shop-item"><a href="' + data.items[i].link + '"><img src="' + data.items[i].img + '" /></a><h2><a href="' + data.items[i].link + '">' + data.items[i].title + '</a></h2><div class="shop-price">' + data.items[i].price + ' &euro;</div></div>');
		}
	})
});