<!--
 /* rollover */
if(document.images) {

	bottoneover = new Array(7);
	bottoneout = new Array(7);

	bottoneover[0]=new Image(40,12);
	bottoneout[0]=new Image(40,12);
	bottoneover[0].src="img/menu/gallery_on.gif";
	bottoneout[0].src="img/menu/gallery.gif";

	bottoneover[1]=new Image(28,12);
	bottoneout[1]=new Image(28,12);
	bottoneover[1].src="img/menu/space_on.gif";
	bottoneout[1].src="img/menu/space.gif";

	bottoneover[2]=new Image(60,12);
	bottoneout[2]=new Image(60,12);
	bottoneover[2].src="img/menu/performance_on.gif";
	bottoneout[2].src="img/menu/performance.gif";

	bottoneover[3]=new Image(28,12);
	bottoneout[3]=new Image(28,12);
	bottoneover[3].src="img/menu/taste_on.gif";
	bottoneout[3].src="img/menu/taste.gif";

	bottoneover[4]=new Image(47,12);
	bottoneout[4]=new Image(47,12);
	bottoneover[4].src="img/menu/creativity_on.gif";
	bottoneout[4].src="img/menu/creativity.gif";

	bottoneover[5]=new Image(30,12);
	bottoneout[5]=new Image(30,12);
	bottoneover[5].src="img/menu/about_on.gif";
	bottoneout[5].src="img/menu/about.gif";

	bottoneover[6]=new Image(40,12);
	bottoneout[6]=new Image(40,12);
	bottoneover[6].src="img/menu/contact_on.gif";
	bottoneout[6].src="img/menu/contact.gif";

}
function acceso(i) {
	if(document.images) document.images["menu"+i].src=bottoneover[i].src;
}
function spento(i) {
	if(document.images) document.images["menu"+i].src=bottoneout[i].src;
}
//-->

