Array.prototype.shuffle = function( b )
{
 var i = this.length, j, t;
 while( i )
 {
  j = Math.floor( ( i-- ) * Math.random() );
  t = b && typeof this[i].shuffle!=='undefined' ? this[i].shuffle() : this[i];
  this[i] = this[j];
  this[j] = t;
 }
 return this;
};

Array.prototype.pluscount = function( b )
{
   var i = this.length;
   this[i] = 0;
   return this;
};

function showBanner(arr, time, id)
{
		dlina_arr = eval(arr).length;
		element = eval(arr)[dlina_arr-1];
		document.getElementById(id).innerHTML = eval(arr)[element];
		eval(arr)[dlina_arr-1]++;
		if(eval(arr)[dlina_arr-1] == dlina_arr-1) eval(arr)[dlina_arr-1] = 0;
		setTimeout("showBanner('"+ arr + "'," + time + ",'" + id +"')" , time*1000);
}

// Баннеры "Заведения города" низ
var KorBottomRestARR = new Array
(
	'<a href="http://restorany-koroleva.ru/full_news_korolev_459.htm" title="Реклама на нашем сайте"><img src="http://restorany-koroleva.ru/banners/start.gif" alt="Реклама на нашем сайте" border="0" /></a>'
)
KorBottomRestARR.shuffle();
KorBottomRestARR.pluscount();

// Баннеры "Афиша" низ
var KorBottomAfARR = new Array
(
	'<a href="http://restorany-koroleva.ru/full_news_korolev_459.htm" title="Реклама на нашем сайте"><img src="http://restorany-koroleva.ru/banners/start.gif" alt="Реклама на нашем сайте" border="0" /></a>'
)
KorBottomAfARR.shuffle();
KorBottomAfARR.pluscount();
