// JavaScript Document

function adArray() {
 for (i=0; i*2<adArray.arguments.length; i++) {
  this[i] = new Object();
  this[i].src = adArray.arguments[i*2];
  this[i].href = adArray.arguments[i*2+1];
 }
 this.length = i;
}
function getAdNum() {
 dat = new Date();
 dat = (dat.getTime()+"").charAt(8);
 if (dat.length == 1)
  ad_num = dat%ads.length;
 else
  ad_num = 0;
 return ad_num;
}
 
/*ide a kép URL-címe,és a link....*/

var ads = new adArray(
"http://www.milomarkabolt.hu/images/nyitolapkepek/oehb.jpg",
"http://www.milomarkabolt.hu/index.php?center=bovebb_cikk&cikkID=186&oldal=1",
"http://www.milomarkabolt.hu/images/nyitolapkepek/0.jpg",
"http://www.milomarkabolt.hu/index.php?center=bovebb_cikk&cikkID=197&oldal=1",
"http://www.milomarkabolt.hu/images/nyitolapkepek/1.jpg",
"http://www.milomarkabolt.hu/index.php?center=bovebb_cikk&cikkID=191&oldal=1",
"http://www.milomarkabolt.hu/images/nyitolapkepek/2.jpg",
"http://www.milomarkabolt.hu/index.php?center=bovebb_cikk&cikkID=192&oldal=1",
"http://www.milomarkabolt.hu/images/nyitolapkepek/3.jpg",
"http://www.milomarkabolt.hu/index.php?center=bovebb_cikk&cikkID=195&oldal=1",
"http://www.milomarkabolt.hu/images/nyitolapkepek/4.jpg",
"http://www.milomarkabolt.hu/index.php?center=bovebb_cikk&cikkID=190&oldal=1",
"http://www.milomarkabolt.hu/images/nyitolapkepek/5.jpg",
"http://www.milomarkabolt.hu/index.php?center=bovebb_cikk&cikkID=194&oldal=1",
"http://www.milomarkabolt.hu/images/nyitolapkepek/savb.jpg",
"http://www.milomarkabolt.hu/index.php?center=bovebb_cikk&cikkID=202&oldal=1",
"http://www.milomarkabolt.hu/images/nyitolapkepek/kecsege.jpg",
"http://www.milomarkabolt.hu/index.php?center=bovebb_cikk&cikkID=199&oldal=1",
"http://www.milomarkabolt.hu/images/nyitolapkepek/borze.jpg",
"http://www.milomarkabolt.hu/index.php?center=bovebb_cikk&cikkID=201&oldal=1",
"http://www.milomarkabolt.hu/images/nyitolapkepek/jeges.jpg",
"http://www.milomarkabolt.hu/index.php?center=bovebb_cikk&cikkID=200&oldal=1",
"http://www.milomarkabolt.hu/images/nyitolapkepek/10.jpg",
"http://www.milomarkabolt.hu/",
"http://www.milomarkabolt.hu/images/nyitolapkepek/11.jpg",
"http://www.milomarkabolt.hu/",
"http://www.milomarkabolt.hu/images/nyitolapkepek/12.jpg",
"http://www.milomarkabolt.hu/"
);


var ad_num = getAdNum(); // don't change this line

document.write('<A href="'+ads[ad_num].href+'"target=_self><IMG SRC="'+ads[ad_num].src+'" '
+'height="274" width="464" border="0" name="js_ad"></a>');

link_num = document.links.length-1;

function rotate() {
 if (document.images) {
  ad_num = (ad_num+1)%ads.length;
  document.js_ad.src = ads[ad_num].src;
  document.links[link_num].href = ads[ad_num].href;
  setTimeout("rotate()",9000);
 }
}
setTimeout("rotate()",9000);

