<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_1');
	if(!parObj)
		{
		parObj = document.createElement('div');
		parObj.setAttribute('id', 'bannerContent_1');
		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-176x218.gif)';
	parObj.style.width = '176px';
	parObj.style.height = '218px';
	parObj.style.textAlign = 'center';
	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 spacer = document.createElement('div');
	spacer.style.height = '5px';
	spacer.style.fontSize = '1px';
	parObj.appendChild(spacer);

	var prodName = document.createElement('div');
	prodName.style.color = '#C853FF';
	prodName.style.fontSize = '12px';
	prodName.style.height = '35px';
	prodName.style.fontWeight = 'bold';
	prodName.innerHTML = auction.name;
	parObj.appendChild(prodName);

	var prodImg = document.createElement('img');
	prodImg.setAttribute('src', auction.image);
	prodImg.style.border = '1px solid #C853FF';
	prodImg.style.width = '92px';
	prodImg.style.height = '92px';
	parObj.appendChild(prodImg);

	var prodPrice = document.createElement('div');
	prodPrice.style.color = '#FF0000';
	prodPrice.style.fontSize = '22px';
	prodPrice.style.paddingTop = '1px';
	prodPrice.innerHTML = auction.priceTxt;
	parObj.appendChild(prodPrice);

	var prodTime = document.createElement('div');
	prodTime.style.color = '#FF8A00';
	prodTime.style.fontSize = '22px';
	prodTime.style.paddingTop = '1px';
	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.width = '120px';
	button.fontSize = '12px';
	button.style.height = '23px';
	button.style.marginLeft = '27px';
	button.style.marginRight = '27px';
	button.style.lineHeight = '20px';

	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);
	