function randomads() {

// Define the path to the image for each ad (images for ads should be stored in the ads folder).

var adsimage = new Array();
adsimage[1] = "ads/468x60_silva.gif";
adsimage[2] = "ads/468x60_dcosta_banner.gif";
adsimage[3] = "ads/468x60_extacy_boutique_Banner.gif";
adsimage[4] = "ads/jacorre-468x60.gif";
adsimage[5] = "ads/468x60_lb_music_store.gif";
adsimage[6] = "ads/468x60_UndergroundS_Banner.gif";
adsimage[7] = "ads/468x60_vic_ent_banner.gif";

// Define the web address for each ad, making sure the number corresponds to the ad above.

var adslink = new Array();
adslink[1] = "http://www.silvaadvertising.com";
adslink[2] = "http://www.dcostaelectric.com";
adslink[3] = "http://www.extacyboutique.com";
adslink[4] = "http://www.jacorre.com";
adslink[5] = "http://www.lusobeat.com/store.html";
adslink[6] = "http://www.myspace.com/undergroundsounddj";
adslink[7] = "http://www.victorentertainmentonline.com";


// ** DO NOT EDIT ANYTHING BELOW THIS **

num=Math.floor(Math.random()*adsimage.length);

document.write("<a href=" +adslink[num]+ " target=_blank><img src=" +adsimage[num]+ " border=0></a>")

}

randomads()