if(document.images) {
pics = new Array(); 
pics[1] = new Image();
pics[1].src = "IMG/meny/images/about.jpg"; 
pics[2] = new Image();
pics[2].src = "IMG/meny/images/about_x.jpg";
pics[3] = new Image();
pics[3].src = "IMG/meny/images/brands.jpg"; 
pics[4] = new Image();
pics[4].src = "IMG/meny/images/brands_x.jpg";
pics[5] = new Image();
pics[5].src = "IMG/meny/images/press.jpg"; 
pics[6] = new Image();
pics[6].src = "IMG/meny/images/press_x.jpg";
pics[7] = new Image();
pics[7].src = "IMG/meny/images/contact.jpg"; 
pics[8] = new Image();
pics[8].src = "IMG/meny/images/contact_x.jpg";
pics[9] = new Image();
pics[9].src = "IMG/meny/images/news.jpg"; 
pics[10] = new Image();
pics[10].src = "IMG/meny/images/news_x.jpg";

}

function changer(from,to) {
if(document.images) {
document.images[from].src = pics[to].src;
}
}