function PreloadNavImages(imgpath)
{
	var imglist = new Array ( '01', '02', '03', '04', '05', '06', '07', '09', '10' );
	var preimg;

	if (document.images) {
		for ( var i = 0; i < imglist.length; i++ ) {
			preimg = new Image();
			preimg.src = imgpath + 'fx_nv_over_' + imglist[i] + '.gif';
			preimg = new Image();
			preimg.src = imgpath + 'fx_nv_on_' + imglist[i] + '.gif';
		}
		preimg = new Image();
		preimg.src = '../../templates/Pixame_v1/images/infobox/categories_over_bg.gif';
		preimg = new Image();
		preimg.src = '../../templates/Pixame_v1/images/infobox/categories_over_bg_down.gif';
	}
}

function PreloadTopmarkenImages(imgpath)
{
	var imglist = new Array ( '01', '02', '03', '04', '05', '06', '07', '09', '10' );
	var preimg;

	if (document.images) {
		for ( var i = 0; i < imglist.length; i++ ) {
			preimg = new Image();
			preimg.src = imgpath + 'topmarken_on_' + imglist[i];
		}
	}
}

function SwapImage(imgname,imgsrc) {
	if (document.images) {
		document.images[imgname].src = imgsrc;
	}
}

