var imgPreload = {
	
	linklist: new Array(),
	imglist: new Array(),
	
	loadImages: function(){
		
		/*
		this.storeImg('http://images.camnation.com/header/nav_whosonline-over.gif');
		this.storeImg('http://images.camnation.com/header/nav_launchcams-over.gif');
		this.storeImg('http://images.camnation.com/header/nav_myfaves-over.gif');
		this.storeImg('http://images.camnation.com/header/nav_myprofile-over.gif');
		this.storeImg('http://images.camnation.com/header/nav_myaccount-over.gif');
		this.storeImg('http://images.camnation.com/header/nav_helpfaq-over.gif');
		
		var imgsLen = this.linklist.length;
		var imgIndex = 0;
		
		while(imgIndex < imgsLen){
			
			this.imglist['img' + imgIndex] = new Image();
			this.imglist['img' + imgIndex].src = this.linklist[imgIndex];
			
			imgIndex++;
			
		}
		*/
		
	},
	
	storeImg: function(imgpath){
		
		//this.linklist.push(imgpath);
		
	}
	
} 

//imgPreload.loadImages();
