function titleBar() {
	return '<a href="index.php"><b>Home</b></a>&nbsp;|&nbsp;<a href="portfolio.php"><b>Portfolio</b></a>&nbsp;|&nbsp;<a href="specials.php"><b>Specials</b></a>&nbsp;|&nbsp;<a href="about.php"><b>About Andrew</b></a>&nbsp;|&nbsp;<a href="contact.php"><b>Contact Me</b></a>&nbsp;|&nbsp;<a href="directions.php"><b>Directions</b></a>';
}

var aryButton = new Array;
	aryButton[0]="Babies";
	aryButton[1]="Kids";
	aryButton[2]="Family";
	aryButton[3]="Senior";
	aryButton[4]="Wedding";
	aryButton[5]="Portraits";
	aryButton[6]="On a Whim";
	aryButton[7]="Sports";
	aryButton[8]="Pets";

var portfolioHeader = new Array;
	portfolioHeader[0]="Babies\'";
	portfolioHeader[1]="Kids\'";
	portfolioHeader[2]="Family";
	portfolioHeader[3]="Senior";
	portfolioHeader[4]="Wedding";
	portfolioHeader[5]="Portraits";
	portfolioHeader[6]="On a Whim";
	portfolioHeader[7]="Sports";
	portfolioHeader[8]="Pets";

function subBar(bold) {

	var strBar;

	strBar='<table cellpadding="1" cellspacing="0"  class="subMenu"><tr>';

	for(i=0;i<aryButton.length;i++){
		if (i == bold)
		{
			strBar+='<td background="images/buttonDown.gif" width="80" height="24" align="center" style="background-repeat:no-repeat;">';
			strBar+='<a href="portfolio.php?category='+aryButton[i]+'&btn='+i+'">'+aryButton[i]+'</a></td>';
		} else {
			strBar+='<td background="images/button.gif" width="80" height="24" align="center" style="background-repeat:no-repeat;">';
			strBar+='<a href="portfolio.php?category='+aryButton[i]+'&btn='+i+'">'+aryButton[i]+'</a></td>';
		}
	}
	strBar+='</tr></table>';

	return strBar;
}
function sideNote(btn) {
	return "<h3>"+ portfolioHeader[btn] + " Portraits</h3>";
}
function bottomText(btn) {
	var aryNote = new Array;
	aryNote[0] = "<p class=\"squishToTop\">Every stage of your baby's development happens only once. Don't let those fleeting precious moments pass by.  Our quiet studio provides the relaxed atmosphere and soft lighting that puts your precious little one at ease. By taking the time to let you and your baby interact, we capture in an image the special bond between parent and child. We allow enough time in our scheduling to give your little bundle of joy the chance to show moods and expressions, creating memories of his or her unique personality.</p><p>\"...looking at my wall full of beautiful portraits of my beautiful baby boy.  I'm so thankful that we found you - We have so many wonderful memories captured forever thanks to you!\"<br>---Stacy</p>";
	aryNote[1] = "<p class=\"squishToTop\">A smile is only one of the hundreds of expressions we make. Making your child comfortable in our studio captures not only a natural smile, but also their multi-dimensional personality. We schedule carefully to make each portrait session a no-rush pleasant experience for you and your child. Kids grow up so fast! A professional portrait will bring back those memories forever.</p><p>\"We are thrilled with the portraits - they are absolutely beautiful! We are getting a lot of compliments on your work...\"<br>---Shawn & Jodi</p>";
	aryNote[2] = "<p class=\"squishToTop\">Capture the spirit of your family with a unique family portrait.  Whether you are looking for a traditional, formal family portrait or an innovative composition filled with personality, we have the experience, equipment and space to bring out the best in everyone and accommodate even the very largest of groups. Our creativity and patience will give you a portrait to treasure for a lifetime.</p><p>\"You are truly talented in the art of photography and in working with people. As we go over the portraits time and again, our task is very difficult if not impossible as there are so many great shots...\"<br>---Matt & Stacy</p>";
	aryNote[3] = "<p class=\"squishToTop\">Senior portraits commemorate a milestone on the way to adulthood. A photographer who can relate to teens, make them comfortable and bring their personalities into play makes the difference between a conventional picture and an image you'll enjoy seeing for a lifetime.  Over 25 years experience photographing people and the ability to emphasize the subject\'s best features result in outstanding portraits you'll be proud to display and share.</p><p>\"You are the best portrait person ever! I love what you did...You work magic.\" ---Your Fan, Sam</p>";
	aryNote[4] = "<p class=\"squishToTop\">Photographing your wedding, a process you want to place in the most trusted, talented, experienced and reliable hands.  We have photographed hundreds of weddings for over 25 years. Together we plan the photography well ahead of time, so you can relax on your wedding day, knowing that our coverage is comprehensive and thorough. Your special day will be documented with both traditional formal photos and contemporary photojournalism. Andrew McAlpin will personally photograph the entire event. Shouldn't your wedding photos be as beautiful as your wedding?</p><p>\"Thank you so much for capturing my dream wedding day in pictures...It is amazing the emotions that were expressed and came across so clearly in the photos\"<br>---Camila & Rick</p>";
	aryNote[5] = "<p class=\"squishToTop\">Leo's Portraits by Andrew McAlpin offers expertise in:<br>-Business Portraits<br>-Location photography<br>-Black & white images<br>-Photographic copy and restoration</p>";
	aryNote[6] = "<p class=\"squishToTop\">Portraits that go beyond the ordinary.</p>";
	aryNote[7] = "<p>&nbsp;</p>";
	aryNote[8] = "<p>&nbsp;</p>";
	return aryNote[btn];
}