function getInclude(index){
	switch (parseInt(index)){
	case 2:
	document.write('<h1>2. Travel</h1>'+
		'<div style="background-color:#ffffff;padding:10px;">'+
			'<p> <img src="newTraveling.jpg" border="0" align="right"/>'+
			' Once you have your <strong>Capitol Collection Souvenir Passport Book</strong>'+
			' you are ready for an adventure that will take you to every corner of the United States,'+
			' and showcase the very best that each state has to offer.</p>'+
			'<p> It is always a good idea to call ahead and make sure a capitol won’t'+
			' be closed on a day that you intend to visit. Legislative sessions,'+
			' special events and miscellaneous conditions can affect public access,'+
			' so call ahead! The back of your Capitol Collection Souvenir Passport Book'+
			' has a list contact information for your ease.</p>'+
			'<div style="text-align:right;">'+
					'<p><< <a href="index.html?page=1">Step 1</a>'+
					' &nbsp;&nbsp;|&nbsp;&nbsp; <a href="index.html?page=3">Step 3</a> >></p>'+
			'</div>'+
			'</div>');
	break;
	case 3:
	document.write('<h1>3. Open the Passport</h1>'+
		'<div style="background-color:#ffffff;padding:10px;">'+
			'<p> <img src="openPassportPage.jpg" border="0" align="right"/>'+
			' Refer to the <strong>hand stamp location guide</strong> at the back of your'+
			' <strong>Souvenir Passport Book</strong> - not every capitol keeps its stamp'+
			' in the same place.</p>'+
			'<p>You maybe able to stamp the book yourself, or someone at the capitol'+
			' may do it; some capitols may have the stamp in public view, while others'+
			' will need to be asked for it. Whatever the scenario, make sure the date'+
			' is correct and get your stamp! </p>'+
			'<div style="text-align:right;">'+
					'<p><< <a href="index.html?page=2">Step 2</a> &nbsp;&nbsp;|&nbsp;&nbsp; <a href="index.html?page=4">Step 4</a> >></p>'+
			'</div>'+
			'</div>');
	break;
	case 4:
	document.write('<h1>4. Get Your Book Stamped</h1>'+
		'<div style="background-color:#ffffff;padding:10px;">'+
			'<img src="openPassportPage.jpg" border="0" align="right"/>'+
			'<h2>IMPORTANT:</h2>'+
			'<p> Please refer to the stamp location guide at the back of your'+
			' Capitol Collection book before heading to a capitol. Some '+
			' capitols have their stamps available ONLY during their open hours.'+
			' Please make sure you will be there when the stamp is open for use!</p>'+			
			' <br clear="all"/>'+
			'<div style="text-align:right;">'+
					'<p><< <a href="index.html?page=3">Step 3</a> &nbsp;&nbsp;|&nbsp;&nbsp; <a href="index.html?page=5">Step 5</a> >></p>'+
			'</div>'+
			'</div>');
	break;
	case 5:
	document.write('<h1>5. You\'re Done!</h1>'+
		'<div style="background-color:#ffffff;padding:10px;">'+
			'<p> <img src="stampedPage.jpg" border="0" align="right"/>'+
			'Once you have your stamp, mark off that capitol in the back of'+
			' the book …this will help you keep track!</p>'+
			' <br clear="all"/>'+
			'<div style="text-align:right;">'+
					'<p><< <a href="index.html?page=4">Step 4</a></p>'+
					'<p><< <a href="index.html">Go to Step 1</a></p>'+
			'</div>'+
			'</div>');	
		break;
	default : document.write('<h1>1. Get the Passport Book</h1>'+
		'<div style="background-color:#ffffff;padding:10px;">'+
			'<p> <img src="shopping4book.jpg" border="0" align="right"/>'+
			' The Capitol Collection Souvenir Passport Book is a pocket-sized '+
			'comprehensive guide to the state capitols.  Conveniently sized like '+
			'an official passport (5" x 5"), this book will provide you with '+
			'information about each capitol:<br/>'+
			'<ul>'+
				'<li>&nbsp;&nbsp;&nbsp;&#149;&nbsp;historical/descriptive content</li>'+
				'<li>&nbsp;&nbsp;&nbsp;&#149;&nbsp;pictures</li>'+
				'<li>&nbsp;&nbsp;&nbsp;&#149;&nbsp;hours of operation*</li>'+
				'<li>&nbsp;&nbsp;&nbsp;&#149;&nbsp;contact information*</li>'+
			'</ul>'+
			'* as up-to-date information as available at time of printing<br/>'+
			'</p>'+
			'<div style="text-align:right;">'+
				'<p><a href="index.html?page=2">Step 2</a> >></p>'+
			'</div>'+
			'</div>');

}	
	
}

