
//function MenuOver (MyMenu, MyImage, MyLanguage) {
  //if (navigator.appVersion.indexOf ('MSIE') != -1) {
     // document.images(MyMenu).src = '../images/' + MyLanguage + '/' + MyImage;
  //} else {
      //eval ('document.' + MyName + '.src = ..\images\'' + MyLanguage + '\'' + MyImage + '\'');
  //}
//}

var menulink = new Array(7);
menulink[1] = '01000_account.html';
menulink[2] = '02000_workshops.html';
menulink[3] = '20000_members.html';
menulink[4] = '30000_campaigns.html';
menulink[5] = 'http://www.yahoo.it';
menulink[6] = 'http://www.yahoo.it';
menulink[7] = 'http://www.yahoo.it';

function MenuRollover (menunumber) {
	if (navigator.appVersion.indexOf ('MSIE') != -1) {
		color_on = '#003399';
		color_off = '#FFFFFF';
		menucell = document.getElementById('menu' + menunumber);
		menulable = document.getElementById('lable' + menunumber);
		if (menulable.style.color == color_on) {
			menulable.style.color = color_off;
			menucell.style.backgroundColor = '';
			//menucell.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=100)'
		} else {
			menulable.style.color = color_on;
			menucell.style.backgroundColor = '#FFFFFF';
			//menucell.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=50)';
		}	
	}
}

function MenuLink (menunumber) {
 open(menulink[menunumber],'_self');
}
