function hilite(which)
{
		if (which == 'home')
			{ document.main.home.src='images/home-h.gif'; }
		else if (which == 'schedule')
			{ document.main.schedule.src='images/schedule-h.gif'; }
		else if (which == 'photos')
			{ document.main.photos.src='images/photos-h.gif'; }
		else if (which == 'discography')
			{ document.main.discography.src='images/discography-h.gif'; }
		else if (which == 'aboutme')
			{ document.main.aboutme.src='images/aboutme-h.gif'; }
		else if (which == 'contact')
			{ document.main.contact.src='images/contact-h.gif'; }

		document.all[ 'id-'+which ].style.background = '#AAB8C3';
}

function unhilite(which)
{
		if (which == 'home')
			{ document.main.home.src='images/home.gif'; }
		else if (which == 'schedule')
			{ document.main.schedule.src='images/schedule.gif'; }
		else if (which == 'photos')
			{ document.main.photos.src='images/photos.gif'; }
		else if (which == 'discography')
			{ document.main.discography.src='images/discography.gif'; }
		else if (which == 'aboutme')
			{ document.main.aboutme.src='images/aboutme.gif'; }
		else if (which == 'contact')
			{ document.main.contact.src='images/contact.gif'; }

		document.all[ 'id-'+which ].style.background = '#6F8699';
}

function zoom(zoompage)
{
	window.open(zoompage,'form','width=500,height=500,location=no, menubar=no,status=no,toolbar=no,scrollbars=yes,resizable=yes')
}