function navigationHover(number) {
	if (number == 1) { document.getElementById('navigationText').innerHTML = '<strong>HOME:</strong> Welcome to Abbybernstein.com!'; }
	if (number == 2) { document.getElementById('navigationText').innerHTML = '<strong>BIO:</strong> Learn more about Abby Bernstein'; }
	if (number == 3) { document.getElementById('navigationText').innerHTML = '<strong>ABBY\'S ROAD:</strong> See where Abby will be performing next'; }
	if (number == 4) { document.getElementById('navigationText').innerHTML = '<strong>PHOTOS:</strong> See album artwork and performance photography'; }
	if (number == 5) { document.getElementById('navigationText').innerHTML = '<strong>MUSIC AND VIDEOS:</strong> Listen to the latest tracks and watch YouTube videos'; }
	if (number == 6) { document.getElementById('navigationText').innerHTML = '<strong>LATEST NEWS:</strong> What\'s new from Abby'; }
	if (number == 7) { document.getElementById('navigationText').innerHTML = '<strong>DEAR ABBY:</strong> Information about contacting Abby and fan mail'; }

}

function photoReplacer (number) {
	document.getElementById('featuredPolaroid').className = 'featuredPhoto' + number;	
	document.getElementById('featuredPhoto1').className = 'hidden';
	document.getElementById('featuredPhoto2').className = 'hidden';
	document.getElementById('featuredPhoto3').className = 'hidden';
	document.getElementById('featuredPhoto4').className = 'hidden';
	document.getElementById('featuredPhoto' + number).className = 'visible';
}

function openMusicPlayer() {
        newWindow=window.open("musicplayer.php", "musicPlayer", "location=no, resizable=no, width=400, height=520");
      }

