/** loader.js Library.
	This was seperated from the main effects handler library because of the nature of the events stack in javascript. **/

/* Don't change these. */
var imageList = [];
var baseUrl = 'http://dev.amediacreative.com/otm/';

function loadImages(){	
		
	/* Load the base images. */

	imageList['transparent'] = new Image(1,1);
	imageList['transparent'].src = "images/main/transparent.gif";

	imageList['bg'] = new Image(1,813);
	imageList['bg'].src = "images/main/bg.png";

	imageList['bubble'] = new Image(172,462);
	imageList['bubble'].src = "images/main/bubble.png";

	imageList['centerpiece'] = new Image(683,402);
	imageList['centerpiece'].src = "images/main/centerpiece.png";

	imageList['content_btm'] = new Image(900,82);
	imageList['content_btm'].src = "images/main/content_btm.png";

	imageList['content_mid'] = new Image(899,1);
	imageList['content_mid'].src = "images/main/content_mid.png";

	imageList['content_top'] = new Image(900,101);
	imageList['content_top'].src = "images/main/content_top.png";

	imageList['space_holder'] = new Image(600,1);
	imageList['space_holder'].src = "images/main/space_holder.gif";

	imageList['swoosh1'] = new Image(502,400);
	imageList['swoosh1'].src = "images/main/swoosh1.png";

	/* Load the footer images with the rollovers */

	var footerImageWidth = 41;
	var footerImageHeight = 41;

	imageList['about'] = new Image(footerImageWidth,footerImageHeight);
	imageList['about'].src = "images/main/about.png";
	imageList['about_on'] = new Image(footerImageWidth,footerImageHeight);
	imageList['about_on'].src = "images/main/about_on.png";

	imageList['clients'] = new Image(footerImageWidth,footerImageHeight);
	imageList['clients'].src = "images/main/clients.png";
	imageList['clients_on'] = new Image(footerImageWidth,footerImageHeight);
	imageList['clients_on'].src = "images/main/clients_on.png";
	
	imageList['contact'] = new Image(footerImageWidth,footerImageHeight);
	imageList['contact'].src = "images/main/contact.png";
	imageList['contact_on'] = new Image(footerImageWidth,footerImageHeight);
	imageList['contact_on'].src = "images/main/contact_on.png";
	
	imageList['gallery'] = new Image(footerImageWidth,footerImageHeight);
	imageList['gallery'].src = "images/main/gallery.png";
	imageList['gallery_on'] = new Image(footerImageWidth,footerImageHeight);
	imageList['gallery_on'].src = "images/main/gallery_on.png";
	
	imageList['home'] = new Image(footerImageWidth,footerImageHeight);
	imageList['home'].src = "images/main/home.png";
	imageList['home_on'] = new Image(footerImageWidth,footerImageHeight);
	imageList['home_on'].src = "images/main/home_on.png";

}
