// JAVASCRIPT

if (document.images)
{
	profileOn = new Image;
	profileOff = new Image;
	servicesOn = new Image;
	servicesOff = new Image;
	accredationOn = new Image;
	accredationOff = new Image;
	contactOn = new Image;
	contactOff = new Image;
	
	profileOn.src = 'images/navBarProfileOn.jpg';
	profileOff.src = 'images/navBarProfile.jpg';
	servicesOn.src = 'images/navBarServicesOn.jpg';
	servicesOff.src = 'images/navBarServices.jpg';
	accredationOn.src = 'images/navBarAccredationOn.jpg';
	accredationOff.src = 'images/navBarAccredation.jpg';
	contactOn.src = 'images/navBarContactOn.jpg';
	contactOff.src = 'images/navBarContact.jpg';
}

function popPhoto() {
	var width = 380;
	var height = 380;
	var win = 'photo';
	var url = 'photo.html';
	
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;
	newwindow = window.open(url, win, 'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height+',left='+left +',top='+top);
	if (window.focus) newwindow.focus();
}
