//********************************************************************************
// COPYRIGHT 2007 © Innovative Sites, Inc.									******
// Unauthorized use or sale of this script is strictly prohibited by law	******
//********************************************************************************

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON
// ONLY USE lowercase FOR ALL OPTIONS
var paragraph_1 	= "yes"		// SHOW THE 1ST PARAGRAPH
var paragraph_2 	= "yes"		// SHOW THE 2ND PARAGRAPH
var showimage		= "yes"		// SHOW A SIDEBAR IMAGE
var topspacing		= "0"		// NUDGE SIDEBAR DOWN
var sidewidth		= "125"		// SIDEBAR WIDTH

// NUDGE SPACER
document.write('<img src="picts/spacer.gif" height="'+topspacing+'" width="'+sidewidth+'"><br>');
document.write('<table cellpadding="5" cellspacing="10" border="0" class="sidebartext-right"><tr><td>');

// START RIGHT SIDEBAR AREA PARAGRAPH 1 EDIT THIS AREA
if (paragraph_1 == "yes") 
{
	document.write('<fieldset><legend>');
	document.write('Daily Adventures<br></legend>');
	document.write('To read about my daily adventures with Ethan and Daniel, please <a target=_blank href="blogger/DailyAdventures.html">click here</a>.<br>');	
	document.write('</fieldset>');
	document.write('<br><br>');
}

// SMALL PICTURE AREA
if (showimage == "yes") 
{
	document.write('<br><center>');
	document.write('<a href="index.html"><img style="BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-BOTTOM-STYLE: none"  src="picts/ethan.gif" border="0" class="borders"></a><br>');
	document.write('</center>');
	document.write('<br><br>');
}

// START RIGHT SIDEBAR AREA PARAGRAPH 2 EDIT THIS AREA
if (paragraph_2 == "yes") 
{
	document.write('<fieldset><legend>');
	document.write('Photo Gallery<br></legend>');
	document.write('To see the latest pictures of me and my family, please <a target=_blank href="http://picasaweb.google.com/AmySmithFamily">click here</a>.<br>');	
	document.write('</fieldset>');
	document.write('<br><br>');
}

document.write('</td></tr></table>');
