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 LyubBottomRestARR = new Array
(
	'<a href="http://restorany-lyubertsy.ru/full_news_lyubertsy_463.htm" title="Реклама на нашем сайте"><img src="http://restorany-lyubertsy.ru/banners/start.gif" alt="Реклама на нашем сайте" border="0" /></a>'
)
LyubBottomRestARR.shuffle();
LyubBottomRestARR.pluscount();

// Баннеры "Афиша" низ
var LyubBottomAfARR = new Array
(
	'<a href="http://restorany-lyubertsy.ru/full_news_lyubertsy_463.htm" title="Реклама на нашем сайте"><img src="http://restorany-lyubertsy.ru/banners/start.gif" alt="Реклама на нашем сайте" border="0" /></a>'
)
LyubBottomAfARR.shuffle();
LyubBottomAfARR.pluscount();
