<!-- hide code from older browsers 

if (document.images) {

homeOn = new Image();
homeOn.src = 'Images/home_on.jpg';
homeOff = new Image();
homeOff.src = 'Images/home_off.jpg'; 

journalOn = new Image();
journalOn.src = 'Images/journal_on.jpg';
journalOff = new Image();
journalOff.src = 'Images/journal_off.jpg';

pollOn = new Image();
pollOn.src = 'Images/poll_on.jpg';
pollOff = new Image();
pollOff.src = 'Images/poll_off.jpg';

giftsOn = new Image();
giftsOn.src = 'Images/gifts_on.jpg';
giftsOff = new Image();
giftsOff.src = 'Images/gifts_off.jpg';

albumOn = new Image();
albumOn.src = 'Images/album_on.jpg';
albumOff = new Image();
albumOff.src = 'Images/album_off.jpg';

guestbookOn = new Image();
guestbookOn.src = 'Images/guestbook_on.jpg';
guestbookOff = new Image();
guestbookOff.src = 'Images/guestbook_off.jpg';

} // if



function imageSwap (toggle, image, nextInstanceName, description) {


	if (document.images) {

	imageName = eval(image + toggle + ".src"); 
	imageWithBottom = image + nextInstanceName; 
 	document[imageWithBottom].src = imageName; 
	
	window.status = description;
	
	} else { // do not implement function 

	} // if

} // imageSwap

// -->