<br />
<b>Warning</b>:  shuffle() expects parameter 1 to be array, null given in <b>/www/doc/www.aukce-dukatky.cz/www/banner.php</b> on line <b>58</b><br />
<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/www/doc/www.aukce-dukatky.cz/www/banner.php</b> on line <b>68</b><br />

	var parObj = document.getElementById('bannerContent_2');
	if(!parObj)
		{
		parObj = document.createElement('div');
		parObj.setAttribute('id', 'bannerContent_2');
		parObj.style.position = 'absolute';
		parObj.style.left = '2px';
		parObj.style.top = '2px';
		setTimeout('document.body.appendChild(parObj);', 1000);
		}

	parObj.style.backgroundImage = 'url(http://www.aukce-dukatky.cz/images/banner/background-banner-468x60.gif)';
	parObj.style.width = '468px';
	parObj.style.height = '60px';
	parObj.style.textAlign = 'left';
	parObj.style.fontFamily = 'Arial';
	parObj.style.fontSize = '12px';
	parObj.innerHTML = '';
	parObj.onclick = function(){document.location.href = '';};
	parObj.style.cursor = 'pointer';
	parObj.style.cursor = 'hand';
	
		var logoImg = document.createElement('img');
		logoImg.setAttribute('src', 'http://www.aukce-dukatky.cz/images/banner/logo-130.gif');
		logoImg.style.position = 'absolute';
		logoImg.style.marginLeft = '10px';
		logoImg.style.marginTop = '15px';
		parObj.appendChild(logoImg);

		var prodImg = document.createElement('img');
		prodImg.setAttribute('src', auction.image);
		prodImg.style.border = '1px solid #C853FF';
		prodImg.style.position = 'absolute';
		prodImg.style.marginTop = '5px';
		prodImg.style.marginLeft = '144px';
		prodImg.style.width = '47px';
		prodImg.style.height = '47px';
		parObj.appendChild(prodImg);

		var prodName = document.createElement('div');
		prodName.style.position = 'absolute';
		prodName.style.marginTop = '5px';
		prodName.style.marginLeft = '205px';
		prodName.style.color = '#C853FF';
		prodName.style.fontSize = '12px';
		prodName.style.width = '130px';
		prodName.style.fontWeight = 'bold';
		prodName.innerHTML = auction.name;
		parObj.appendChild(prodName);

		var prodPrice = document.createElement('div');
		prodPrice.style.color = '#FF0000';
		prodPrice.style.fontSize = '22px';
		prodPrice.style.position = 'absolute';
		prodPrice.style.marginTop = '33px';
		prodPrice.style.marginLeft = '205px';
		prodPrice.innerHTML = auction.priceTxt;
		parObj.appendChild(prodPrice);

		var prodTime = document.createElement('div');
		prodTime.style.position = 'absolute';
		prodTime.style.marginTop = '5px';
		prodTime.style.marginLeft = '337px';
		prodTime.style.color = '#FF8A00';
		prodTime.style.fontSize = '22px';
		prodTime.style.width = '120px';
		prodTime.style.textAlign = 'center';
		prodTime.innerHTML = auction.leftTxt;
		parObj.appendChild(prodTime);

		var button = document.createElement('div');
		button.style.background = 'url(http://www.aukce-dukatky.cz/images/background-product-submit-yellow.gif)';
		button.style.position = 'absolute';
		button.style.marginTop = '30px';
		button.style.marginLeft = '337px';
		button.style.width = '120px';
		button.fontSize = '12px';
		button.style.height = '23px';
		button.style.lineHeight = '20px';
		button.style.textAlign = 'center';

		var anchor = document.createElement('a');
		anchor.setAttribute('href', auction.url);
		anchor.style.color = '#ffffff';
		anchor.style.textDecoration = 'none';
		anchor.innerHTML = 'Přihodit';

		button.appendChild(anchor);
		parObj.appendChild(button);
		