<!--
	if ( document.images ) {

		icon1_on = new Image();
		icon1_off = new Image();
		icon1_swap = new Image();
	
		icon1_on.src = "../html/gfx/icons/news_over.jpg";
		icon1_off.src = "../html/gfx/icons/news.jpg";
		icon1_swap.src = "../html/gfx/icons/news.jpg";
	
		icon2_on = new Image();
		icon2_off = new Image();
		icon2_swap = new Image();
	
		icon2_on.src = "../html/gfx/icons/publ_over.jpg";
		icon2_off.src = "../html/gfx/icons/publ.jpg";
		icon2_swap.src = "../html/gfx/icons/publ.jpg";
	
		icon3_on = new Image();
		icon3_off = new Image();
		icon3_swap = new Image();
	
		icon3_on.src = "../html/gfx/icons/studio_over.jpg";
		icon3_off.src = "../html/gfx/icons/studio.jpg";
		icon3_swap.src = "../html/gfx/icons/studio.jpg";
	
		icon4_on = new Image();
		icon4_off = new Image();
		icon4_swap = new Image();
	
		icon4_on.src = "../html/gfx/icons/people_over.jpg";
		icon4_off.src = "../html/gfx/icons/people.jpg";
		icon4_swap.src = "../html/gfx/icons/people.jpg";
	
		icon5_on = new Image();
		icon5_off = new Image();
		icon5_swap = new Image();
	
		icon5_on.src = "../html/gfx/icons/artists_over.jpg";
		icon5_off.src = "../html/gfx/icons/artists.jpg";
		icon5_swap.src = "../html/gfx/icons/artists.jpg";

		icon6_on = new Image();
		icon6_off = new Image();
		icon6_swap = new Image();
	
		icon6_on.src = "../html/gfx/icons/press_over.jpg";
		icon6_off.src = "../html/gfx/icons/press.jpg";
		icon6_swap.src = "../html/gfx/icons/press.jpg";
	
		icon7_on = new Image();
		icon7_off = new Image();
		icon7_swap = new Image();
	
		icon7_on.src = "../html/gfx/icons/order_over.jpg";
		icon7_off.src = "../html/gfx/icons/order.jpg";
		icon7_swap.src = "../html/gfx/icons/order.jpg";
	
		icon8_on = new Image();
		icon8_off = new Image();
		icon8_swap = new Image();
	
		icon8_on.src = "../html/gfx/icons/contact_over.jpg";
		icon8_off.src = "../html/gfx/icons/contact.jpg";
		icon8_swap.src = "../html/gfx/icons/contact.jpg";
	
		icon9_on = new Image();
		icon9_off = new Image();
		icon9_swap = new Image();
	
		icon9_on.src = "../html/gfx/pn_lefttop_over.jpg";
		icon9_off.src = "../html/gfx/pn_lefttop.jpg";
		icon9_swap.src = "../html/gfx/pn_lefttop.jpg";
	
		icon10_on = new Image();
		icon10_off = new Image();
		icon10_swap = new Image();
	
		icon10_on.src = "../html/gfx/pn_ritebot_over.jpg";
		icon10_off.src = "../html/gfx/pn_ritebot.jpg";
		icon10_swap.src = "../html/gfx/pn_ritebot.jpg";
	}
	
	function setIcon(n){
		if ( document.images ) {
			document.icon1.src   = (n==1)  ? icon1_on.src: icon1_off.src ;
			document.icon2.src   = (n==2)  ? icon2_on.src: icon2_off.src ;
			document.icon3.src   = (n==3)  ? icon3_on.src: icon3_off.src ;
			document.icon4.src   = (n==4)  ? icon4_on.src: icon4_off.src ;
			document.icon5.src   = (n==5)  ? icon5_on.src: icon5_off.src ;
			document.icon6.src   = (n==6)  ? icon6_on.src: icon6_off.src ;
			document.icon7.src   = (n==7)  ? icon7_on.src: icon7_off.src ;
			document.icon8.src   = (n==8)  ? icon8_on.src: icon8_off.src ;
			document.icon9.src   = (n==9)  ? icon9_on.src: icon9_off.src ;
			document.icon10.src   = (n==10)  ? icon10_on.src: icon10_off.src ;
			
		}

	}

	function swapIcon(n){
		if ( document.images ) {
			icon1_off.src  = (n==1) ? icon1_on.src: icon1_swap.src ;
			icon2_off.src  = (n==2) ? icon2_on.src: icon2_swap.src ;
			icon3_off.src  = (n==3) ? icon3_on.src: icon3_swap.src ;
			icon4_off.src  = (n==4) ? icon4_on.src: icon4_swap.src ;
			icon5_off.src  = (n==5) ? icon5_on.src: icon5_swap.src ;
			icon6_off.src  = (n==6) ? icon6_on.src: icon6_swap.src ;
			icon7_off.src  = (n==7) ? icon7_on.src: icon7_swap.src ;
			icon8_off.src  = (n==8) ? icon8_on.src: icon8_swap.src ;
			icon9_off.src  = (n==9) ? icon9_on.src: icon9_swap.src ;
			icon10_off.src  = (n==10) ? icon10_on.src: icon10_swap.src ;
			
			setIcon(0)
		}

	}

//-->