//Structure to hold Image Library
function ImgCollection(moutsrc, moversrc, mw, mh){
	this.out = new Image(mw, mh);
	this.out.src = moutsrc;
	this.over = new Image(mw, mh);
	this.over.src = moversrc;
	this.width = mw;
	this.height = mh;
}//end struct createImage()


//Please name each image array properly, an separately

var toolimage = new Array();

//image library for main tool bar

toolimage[0] = new ImgCollection('http://www.mcelhanney.com/mcsl/Includes/menu-logo.jpg', 'http://www.mcelhanney.com/mcsl/Includes/menu-logo.jpg', 152, 27);
toolimage[1] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/menu/normal/1.gif', 'http://www.mcelhanney.com/mcsl/images/menu/mouseover/1.gif', 42, 27);
toolimage[2] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/menu/normal/2.gif', 'http://www.mcelhanney.com/mcsl/images/menu/mouseover/2.gif', 53, 27);
toolimage[3] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/menu/normal/3.gif', 'http://www.mcelhanney.com/mcsl/images/menu/mouseover/3.gif', 49, 27);
toolimage[4] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/menu/normal/4.gif', 'http://www.mcelhanney.com/mcsl/images/menu/mouseover/4.gif', 55, 27);
toolimage[5] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/menu/normal/5.gif', 'http://www.mcelhanney.com/mcsl/images/menu/mouseover/5.gif', 58, 27);
toolimage[6] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/menu/normal/6.gif', 'http://www.mcelhanney.com/mcsl/images/menu/mouseover/6.gif', 68, 27);
toolimage[7] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/menu/normal/7.gif', 'http://www.mcelhanney.com/mcsl/images/menu/mouseover/7.gif', 52, 27);
toolimage[8] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/menu/normal/8.gif', 'http://www.mcelhanney.com/mcsl/images/menu/mouseover/8.gif', 53, 27);
toolimage[9] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/menu/normal/10.gif', 'http://www.mcelhanney.com/mcsl/images/menu/mouseover/10.gif', 66, 27);
toolimage[10] = new ImgCollection('http://www.mcelhanney.com/mcsl/Includes/menu-client-button.gif', 'http://www.mcelhanney.com/mcsl/Includes/menu-client-button-over.gif', 52, 27);

var servicesimage = new Array();

//image library for menu collection services
servicesimage[0] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/services%20menu/normal/1.gif', 'http://www.mcelhanney.com/mcsl/images/services%20menu/mouseover/1.gif', 59, 13);
servicesimage[1] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/services%20menu/normal/2.gif', 'http://www.mcelhanney.com/mcsl/images/services%20menu/mouseover/2.gif', 57, 13);
servicesimage[2] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/services%20menu/normal/3.gif', 'http://www.mcelhanney.com/mcsl/images/services%20menu/mouseover/3.gif', 55, 13);

var aboutimage = new Array();

//image library for menu collection About Us
aboutimage[0] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/aboutus%20menu/normal/2.gif', 'http://www.mcelhanney.com/mcsl/images/aboutus%20menu/mouseover/2.gif', 49, 17);
aboutimage[1] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/aboutus%20menu/normal/3.gif', 'http://www.mcelhanney.com/mcsl/images/aboutus%20menu/mouseover/3.gif', 181, 17);
aboutimage[2] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/aboutus%20menu/normal/4.gif', 'http://www.mcelhanney.com/mcsl/images/aboutus%20menu/mouseover/4.gif', 183, 17);
aboutimage[3] = new ImgCollection('http://www.mcelhanney.com/mcsl/images/aboutus%20menu/normal/5.gif', 'http://www.mcelhanney.com/mcsl/images/aboutus%20menu/mouseover/5.gif', 203, 17);
