function preLoad() {
if(document.images) {
if(!document.imageArray) {
document.imageArray=new Array();
var i = document.imageArray.length;
var a = preLoad.arguments;
for(i=0; i<a.length; i++) {
document.imageArray[i] = new Image;
document.imageArray[i].src=a[i];
}
}
}
}



var nav2 = new Array();

nav2[0] = new Array();
//this value is the link for the nav item
nav2[0][0] = "/index.php";
//this value is the name of the first image, the "off" image
nav2[0][1] = "nav2_home";
//this value is the width of the image
nav2[0][2] = "115";
//height of the image
nav2[0][3] = "19";
//alt tag for image
nav2[0][4] = "Home";

nav2[1] = new Array();
//this value is the link for the nav item
nav2[1][0] = "/whoweare.html";
//this value is the name of the first image, the "off" image
nav2[1][1] = "nav2_whoweare";
//this value is the width of the image
nav2[1][2] = "115";
//height of the image
nav2[1][3] = "19";
//alt tag for image
nav2[1][4] = "Who We Are";

nav2[2] = new Array();
nav2[2][0] = "/ourservices.html";
nav2[2][1] = "nav2_serv";
nav2[2][2] = "115";
nav2[2][3] = "19";
nav2[2][4] = "Our Services";



nav2[3] = new Array();
//this value is the link for the nav item
nav2[3][0] = "/bookinginfo.php";
//this value is the name of the first image, the "off" image
nav2[3][1] = "nav2_booking";
//this value is the width of the image
nav2[3][2] = "115";
//height of the image
nav2[3][3] = "19";
//alt tag for image
nav2[3][4] = "Booking Info";

nav2[4] = new Array();
nav2[4][0] = "/presentations.html";
nav2[4][1] = "nav2_presentations";
nav2[4][2] = "115";
nav2[4][3] = "19";
nav2[4][4] = "Presentations";

nav2[5] = new Array();
nav2[5][0] = "/initiatives.html";
nav2[5][1] = "nav2_initiatives";
nav2[5][2] = "115";
nav2[5][3] = "19";
nav2[5][4] = "Q2 Initiatives";


nav2[6] = new Array();
nav2[6][0] = "/news/articles.php?articlemenu=1";
nav2[6][1] = "nav2_articles";
nav2[6][2] = "115";
nav2[6][3] = "19";
nav2[6][4] = "Articles";

nav2[7] = new Array();
nav2[7][0] = "/links.php";
nav2[7][1] = "nav2_links";
nav2[7][2] = "115";
nav2[7][3] = "19";
nav2[7][4] = "Links";



/*nav2[7] = new Array();
nav2[7][0] = "./shop/";
nav2[7][1] = "nav2_products";
nav2[7][2] = "115";
nav2[7][3] = "19";
nav2[7][4] = "Products";*/

nav2[8] = new Array();
nav2[8][0] = "/contact.php";
nav2[8][1] = "nav2_contact";
nav2[8][2] = "115";
nav2[8][3] = "19";
nav2[8][4] = "Contact Us";

function swapImage(imgName, fileName) {


if(document.images) {
var imgToChange="document." + imgName;
imgToChange=eval(imgToChange);
imgToChange.src=fileName;
}
}






var navBar2 = "";

function leftNav(currentPage) {
for (i = 0; i < nav2.length; i++) {
if(i == currentPage)
{
picSrc2 = '../images/' + nav2[i][1] + '_on.gif';
}
else
{
picSrc2 = '../images/' + nav2[i][1] + '.gif';
}

navBar2 += '<tr><td><a href="' + nav2[i][0] + '" onMouseOver="swapImage(\'' + nav2[i][1] + '\',\'../images/' + nav2[i][1] + '_on.gif\');" onMouseOut="swapImage(\'' + nav2[i][1] + '\',\'' + picSrc2 + '\');"><img src="' + picSrc2 + '" width="' + nav2[i][2] + '"height="' + nav2[i][3] + '" border="0" alt="' + nav2[i][4] + '" name="' + nav2[i][1] + '" /></a></td></tr>';
}
//alert(navBar2);
document.write(navBar2);
} 


preLoad('../images/nav2_contact_on.gif','../images/nav2_articles_on.gif','../images/nav2_newsreview_on.gif','../images/nav2_initiatives_on.gif','../images/nav2-links_on.gif','../images/nav2_presentations_on.gif','../images/nav2_booking_on.gif');