// JavaScript Document


<!-- Original:  Nicholas Lupien (smylex@aol.com) -->
<!-- Modified:  Ainsof So'o (maloana@hotmail.com) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var rand1 = 0;
var useRand = 0;

images = new Array;

images[0] = "../images/ads/2008/Zoom Banner Advert - Broadband to go anyone.jpg"; //6 June 2008
images[1] = "../images/ads/2008/Advert - CSL SWS Website _thumb.jpg";
images[2] = "../images/ads/2008/CSL Equipment Rental _thumb.jpg";
images[3] = "../images/ads/2008/Samoa.WS Internet Cafe (Web) _thumb.jpg";
images[4]= "http://www.csl.ws/images/ad/Database%20_thumb.jpg";
images[5]= "../images/ads/2008/CSLM Full Service Business Centre _thumb.jpg"; //9 April 2008
images[6]= "../images/ads/2008/Zoom Banner Advert - User friendly.jpg"; //6 June 2008
images[7]= "../images/ads/2008/CSL - web, db development.jpg"; //12 Nov 2008
images[8]= "../images/ads/2009/Back_to_school_special_2009.jpg"; //26 Jan 2009
images[9]= "../images/ads/2009/Back_to_school_special_2.jpg"; //26 Jan 2009
images[10]= "../images/ads/2009/Back_to_school_special_3.jpg"; //26 Jan 2009

//list of inactive ads
//images[3] = "../images/ads/2008/DELL OptiPlex Desktops (Web) _thumb.jpg";
//images[4] = "../images/ads/2008/SE - iPod Shuffle.jpg"; //6 June 2008
//images[5] = "../images/ads/2008/SE New Stock.jpg"; //6 June 2008
//images[6] = "../images/ads/2008/CSL - DELL Byte Saver.jpg"; //6 June 2008
//images[0] = "../images/ads/2008/SE- Dec_specials1.jpg";  //15 Dec 2008
//images[1] = "../images/ads/2008/SE- Dec_specials2.jpg";  //15 Dec 2008
//images[2] = "../images/ads/2008/SE- Dec_specials3.jpg";  //15 Dec 2008
//images[3] = "../images/ads/2008/SE- Dec_specials4.jpg";  //15 Dec 2008
//images[4] = "../images/ads/2008/DELL X-Mas_Bundle2.jpg"; //15 Dec 2008
//images[12]= "../images/ads/2008/SE- November specials_mixed.jpg"; //12 Nov 2008
//images[13]= "../images/ads/2008/SE- November_MP3 players galore.jpg"; //12 Nov 2008
//images[14]= "../images/ads/2008/SE- November_usb_galore.jpg"; //12 Nov 2008
//images[12]= "../images/ads/2008/CSL- School Break Special_extended _thimb.jpg"; //18 Sept 2008 //outdated
//images[6] = "../images/ads/2008/CSL - Senior Engineer Vacancy.jpg"; //6 June 2008 //outdated
//images[9]= "../images/ads/2008/CSL Notice _thumb.jpg"; //24 April 2008
//images[7] = "../images/ads/2008/SE Great Combo Ideas (Web) _thumb.jpg";	//sold out
//images[8]= "../images/ads/2008/SE Speakers and Headsets (Colour) _thumb.jpg"; //sold out
//images[9]= "../images/ads/2008/Samoa.WS Deactivation Advert - April _thumb.jpg"; //remove this on 15th April
//images[13]= "../images/ads/2008/SE Dig Cameras _thumb.jpg"; //1 May 2008 sold out
//images[8]= "../images/ads/2009/Back_to_work_special.jpg"; //13 Jan 2009
//images[9]= "../images/ads/2009/Back_to_work_special_server.jpg"; //13 Jan 2009
//images[10]= "../images/ads/2009/SE- Work_specials1.jpg"; //13 Jan 2009
//images[11]= "../images/ads/2009/SE- Work_specials2.jpg"; //13 Jan 2009

function swapPic() {
var imgnum = images.length - 1;
do {
var randnum = Math.random();
rand1 = Math.round((imgnum - 1) * randnum) + 1;
} while (rand1 == useRand);
useRand = rand1;
//document.randimg.src = images[useRand].src;

image_new = document.getElementById(imageId);
image_new.src = "";			//clear image first
image_new.src = images[useRand];  //load new image
}
//  End -->