﻿<!-- // Preload images
if (document.images) {
// Side Navigation
	homeoff = new Image(50,50); homeoff.src="images/navigation/homeb1.gif";
	homeover = new Image(50,50); homeover.src="images/navigation/homeb2.gif";

	photooff = new Image(50,50); photooff.src="images/navigation/photogalleryb1.gif";
	photoover = new Image(50,50); photoover.src="images/navigation/photogalleryb2.gif";
	
	videooff = new Image(50,50); videooff.src="images/navigation/videogalleryb1.gif";
	videoover = new Image(50,50); videoover.src="images/navigation/videogalleryb2.gif";
	
	contactoff = new Image(50,50); contactoff.src="images/navigation/contactb1.gif";
	contactover = new Image(50,50); contactover.src="images/navigation/contactb2.gif";
	
	friendsoff = new Image(50,50); friendsoff.src="images/navigation/friendsb1.gif";
	friendsover = new Image(50,50); friendsover.src="images/navigation/friendsb2.gif";
}

function img_act(imgName) {
    if (document.images) document[imgName].src = eval(imgName + "over.src");
 }

function img_inact(imgName) {     
    if (document.images) document[imgName].src = eval(imgName + "off.src");
 }
// -->