$(document).ready(function () {
	getNewRandomProduct();
});

function getNewRandomProduct() {
//	$.timer(7500, function (timer) {
	$.timer(10000, function (timer) {
//		timer.stop();

		var base = $('base').attr('href');
		var url = base + 'page/webshop_get_random_product';
		var width = $('#randomProdImage').width();
		var border = $('#randomProdImage').css('border');


		$.getJSON(url, function (json) {
			$('#randomProductWrapper').fadeOut(function () {
				$('#randomProdImage').attr('src', json.image).one('load', function () {

					url2 = base + 'webshop/product/i/'+json.ID;
					$('a.moreInfoLink').attr('href', url2);
					
					$('#randomProductName').text(json.Name);
					$('#randomProductPrice').html(json.Price);
					
					$('#randomProductWrapper').fadeIn(/*function () {
						getNewRandomProduct();
					}*/);

				});
			});
		});
	});
}