//------------------------------------------------------------------------//
//Edit the contents of this file to change the images displayed as banners//
//------------------------------------------------------------------------//


function insert_banner () {
var my_imgs = new Array();


//----------------------Edit Here----------------------------------------//

//Set your image urls here.
//Add as many as you'd like.
//Make sure to increment the index each time. (Change the number between the brackets. Make sure to start at zero.)
my_imgs[0] = "http://www.blanklogo.com/myspace/bl-banner.jpg";

//An example of using three banners:
//my_imgs[0] = "http://example.com/image1.jpg";
//my_imgs[1] = "http://example.com/image2.jpg";
//my_imgs[2] = "http://example.com/image3.jpg";
//End example

//^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ Stop Editing ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ //


  var ran_num = Math.floor(Math.random()*(my_imgs.length));
  
  document.write("<img src=\""+my_imgs[ran_num]+"\" border=\"0\" />");

}