function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}
var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		over_sub_home = newImage(/*URL*/'http://www.outsidetheboxx.net/images/template/sub_home_.gif');
		over_sub_new = newImage(/*URL*/'http://www.outsidetheboxx.net/images/template/sub_new_.jpg');
		over_sub_writing = newImage(/*URL*/'http://www.outsidetheboxx.net/images/template/sub_writing_.jpg');
		over_sub_photos = newImage(/*URL*/'http://www.outsidetheboxx.net/images/template/sub_photos_.jpg');
		over_sub_adventure = newImage(/*URL*/'http://www.outsidetheboxx.net/images/template/sub_adventure_.jpg');
		over_sub_spirit = newImage(/*URL*/'http://www.outsidetheboxx.net/images/template/sub_spirit_.jpg');
		over_sub_faq = newImage(/*URL*/'http://www.outsidetheboxx.net/images/template/sub_faq_.jpg');
		over_sub_about = newImage(/*URL*/'http://www.outsidetheboxx.net/images/template/sub_about_.jpg');
		over_sub_forum = newImage(/*URL*/'http://www.outsidetheboxx.net/images/template/sub_forum_.jpg');
		over_sub_chaos = newImage(/*URL*/'http://www.outsidetheboxx.net/images/template/sub_chaos_.jpg');
		over_sub_market = newImage(/*URL*/'http://www.outsidetheboxx.net/images/template/sub_market_.jpg');
		preloadFlag = true;								
	}
}
function changeImages() {
	d = document;
	if (d.images) {
		var img;
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			img = null;
			if (d.layers) {img = findElement(changeImages.arguments[i],0);}
			else {img = d.images[changeImages.arguments[i]];}
			if (img) {img.src = changeImages.arguments[i+1];}
		}
	}
}