// Netscape 3.0 compatibility test (for javascript image swapping)
	compat = false;
	if( parseInt( navigator.appVersion ) >= 3 ) {
		compat = true; 
	}

// cache images for quick swapping
	if( compat ) {

		lo_practices= new Image();
		lo_practices.src = "img/lo_practices.gif";
		l_practices= new Image();
		l_practices.src = "img/l_practices.gif";
		
		lo_client= new Image();
		lo_client.src = "img/lo_client.gif";
		l_client= new Image();
		l_client.src = "img/l_client.gif";
		
		lo_resources = new Image();
		lo_resources.src = "img/lo_resources.gif";
		l_resources = new Image();
		l_resources.src = "img/l_resources.gif";
		
		lo_career = new Image();
		lo_career.src = "img/lo_career.gif";
		l_career = new Image();
		l_career.src = "img/l_career.gif";
		
		lo_contact = new Image();
		lo_contact.src = "img/lo_contact.gif";
		l_contact = new Image();
		l_contact.src = "img/l_contact.gif";
		
	}
	

// swap images using the cached images

function changeImg(x, y) {
	if( compat ) {
		document.images[x].src=eval(y+'.src'); 
		}
	}
