/*
var images = new Array();
images[0] = "images/lnk_hem_2.jpg.gif";
images[1] = "images/lnk_om_oss_2.gif";
images[2] = "images/lnk_nyheter_2.gif";
images[3] = "images/lnk_kompetens_2.gif";
images[4] = "images/lnk_arbetsmodell_2.gif";
images[5] = "images/lnk_medarbetare_2.gif";
images[6] = "images/lnk_kontakt_2.gif";

// Load images so they will be put in users cache.
createImages()

function createImages(){
   // Use the image url:s in array "image" to create image objects 
   img = new Array();
   for (var i = 0; i< images.length; i++){
      img[i] = new Image();
      img[i].src = images[i];
   }
}
*/

function activateImage(oImage, imageURL){
	// Dont swap image if the active image has "_red" in the image URL. If "_red" exist, then the page for that image link is the active page.
	if(oImage.src.indexOf("_red")<0){
		oImage.src = imageURL;
	}
}