function newImg(i){p=new Image(); p.src=i; return p;}

var m=new Array();



var shortnames=new Array('news','about_us','exhibitions','events_and_calendar','collection','photo_and_video','press_about_us','sky_art_cafe','how_to_find_us','education');

m['home']= newImg("/_img/icon_home.gif");
m['home_o']= newImg("/_img/icon_home_o.gif");
m['mail']= newImg("/_img/icon_mail.gif");
m['mail_o']= newImg("/_img/icon_mail_o.gif");
	
for each(k in shortnames)
{
	m[k]= newImg("/_img/"+LANG+"/nav_"+k+".gif");
	m[k+'_o']= newImg("/_img/"+LANG+"/nav_"+k+"_o.gif");
}
/*

m1 = newImg("/_img/icon_home.gif");
m1_o = newImg("/_img/icon_home_o.gif");

m2 = newImg("/_img/icon_mail.gif");
m2_o = newImg("/_img/icon_mail_o.gif");


m3 = newImg("/_img/"+LANG+"/nav_news.gif");
m3_o = newImg("/_img/"+LANG+"/nav_news_o.gif");

m4 = newImg("/_img/"+LANG+"/nav_about_us.gif");
m4_o = newImg("/_img/"+LANG+"/nav_about_us_o.gif");

m5 = newImg("/_img/"+LANG+"/nav_exhibitions.gif");
m5_o = newImg("/_img/"+LANG+"/nav_exhibitions_o.gif");

m6 = newImg("/_img/"+LANG+"/nav_events_and_calendar.gif");
m6_o = newImg("/_img/"+LANG+"/nav_events_and_calendar_o.gif");

m7 = newImg("/_img/"+LANG+"/nav_collection.gif");
m7_o = newImg("/_img/"+LANG+"/nav_collection_o.gif");

m8 = newImg("/_img/"+LANG+"/nav_photo_and_video.gif");
m8_o = newImg("/_img/"+LANG+"/nav_photo_and_video_o.gif");

m9 = newImg("/_img/"+LANG+"/nav_press_about_us.gif");
m9_o = newImg("/_img/"+LANG+"/nav_press_about_us_o.gif");

m10 = newImg("/_img/"+LANG+"/nav_sky_art_cafe.gif");
m10_o = newImg("/_img/"+LANG+"/nav_sky_art_cafe_o.gif");

m11 = newImg("/_img/"+LANG+"/nav_how_to_find_us.gif");
m11_o = newImg("/_img/"+LANG+"/nav_how_to_find_us_o.gif");

m12 = newImg("/_img/"+LANG+"/nav_education.gif");
m12_o = newImg("/_img/"+LANG+"/nav_education_o.gif");
*/

function over(shortname) {
	document.getElementById('m'+shortname).src = m[shortname+'_o'].src;
}
function out(shortname) {
	document.getElementById('m'+shortname).src = m[shortname].src;
	
}