<!-- // hide for old browsers
if (document.images) {


	news_on = new Image();
	news_on.src = 'img/menu/news_on.jpg';
	news_off = new Image();
	news_off.src = 'img/menu/news_off.jpg';
	
	gallery_on = new Image();
	gallery_on.src = 'img/menu/gallery_on.jpg';
	gallery_off = new Image();
	gallery_off.src = 'img/menu/gallery_off.jpg';
	
	biography_on = new Image();
	biography_on.src = 'img/menu/biography_on.jpg';
	biography_off = new Image();
	biography_off.src = 'img/menu/biography_off.jpg';
	
	audio_on = new Image();
	audio_on.src = 'img/menu/audio_on.jpg';
	audio_off = new Image();
	audio_off.src = 'img/menu/audio_off.jpg';
	
	shop_on = new Image();
	shop_on.src = 'img/menu/shop_on.jpg';
	shop_off = new Image();
	shop_off.src = 'img/menu/shop_off.jpg';
	
	contact_on = new Image();
	contact_on.src = 'img/menu/contact_on.jpg';
	contact_off = new Image();
	contact_off.src = 'img/menu/contact_off.jpg';
		
	links_on = new Image();
	links_on.src = 'img/menu/links_on.jpg';
	links_off = new Image();
	links_off.src = 'img/menu/links_off.jpg';
	
	albums_on = new Image();
	albums_on.src = 'img/menu/albums_on.jpg';
	albums_off = new Image();
	albums_off.src = 'img/menu/albums_off.jpg';
}
	function imgOn(imgName) {
    if (document.images) {
        document[imgName].src = eval(imgName + "_on.src");
    }
}

function imgOff(imgName) {
    if (document.images) {
        document[imgName].src = eval(imgName + "_off.src");
    }
}

//-->
