	function imageRollOver(id, image){
		var szImagePath = '/images/' + image;
		var szLinkId = id + 'Link';
		document.getElementById(id).src = szImagePath;
		document.getElementById(szLinkId).style.color = '#FFFFFF';
	}
	
	function imageRollOut(id, image){
		var szImagePath = '/images/' + image;
		var szLinkId = id + 'Link';
		document.getElementById(id).src = szImagePath;
		document.getElementById(szLinkId).style.color = '#48BCFF';
	}
