var imagesToPreload = new Array(
	'http://www.foxycode.net/mep/images/tab_active.gif',
	'http://www.foxycode.net/mep/images/tab_hover.gif',
	'http://www.foxycode.net/mep/images/bg_tab_s.png',
	'http://www.foxycode.net/images/moz/logo_install.png');

function preloadImages() {
	if(document.images) {
		if(!document.imageArray) {
			document.imageArray = new Array;
		}	
		var i,j = document.imageArray.length;
		for(i=0;i<imagesToPreload.length;i++) {
			if(imagesToPreload[i].indexOf('#') != 0) {
				document.imageArray[j] = new Image;	
				document.imageArray[j++].src = imagesToPreload[i];
			}
		}
	}
}