function writeRightNavBar(){
var rightNavBar =	"	<h3><b><b>jewelry organizers</b></b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"jewelry-organizer.html\">jewelry organizer case</a></li>" +
					"			<li><a href=\"jewelry-roll.html\">jewelry roll</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>tapestry/table cloth/bed spread</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"tapestries.html\">tapestry/table cloth/bed spread</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>scarves and shawls</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"scarves-shawls.html\">scarves & shawls</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>cotton fabric shopping bags</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"fabric-bags-celtic.html\">celtic cotton shopping bags</a></li>" +
					"			<li><a href=\"fabric-bags-contemporary.html\">cotton shopping bags</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>pencil pouches</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"pencil-pouches.html\">pencil pouches</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>coin pouches</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"coin-pouches.html\">coin pouches</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>chimes</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"chimes.html\">chimes</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>gift bags</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"gift-bag-small.html\">small</a></li>" +
					"			<li><a href=\"gift-bag-medium.html\">medium</a></li>" +
					"			<li><a href=\"gift-bag-large.html\">large</a></li>" +
					"		</ul>" +
					"" +				
					"	<h3><b>guest books</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"guest-book.html\">guest books</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>journals & notebooks</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"journal.html\">journals & notebooks</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>mini pocket slip pad</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"slip-pad.html\">mini pocket slip pad</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>memo slips</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"memo-slips.html\">memo slips</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>bottle bags</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"bottle-bags-small.html\">perfume/lotion bags</a></li>" +
					"			<li><a href=\"bottle-bags-large.html\">wine bags</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>gift pouches</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"gift-pouch-small.html\">small</a></li>" +
					"			<li><a href=\"gift-pouch-medium.html\">medium</a></li>" +
					"			<li><a href=\"gift-pouch-large.html\">large</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>handkerchiefs</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"hankies.html\">handkerchiefs</a></li>" +
					"		</ul>" +
					"" +
					"	<h3><b>handmade stationery</b></h3>" +
					"		<ul class=\"block\">" +
					"			<li><a href=\"gift-tags.html\">gift tags</a></li>" +
					"			<li><a href=\"cards-and-envelopes.html\">cards and envelopes</a></li>" +
					"			<li><a href=\"money-envelopes.html\">money envelopes</a></li>" +
					"		</ul>";
//alert(rightNavBar);

document.write(rightNavBar);
}

function writeTopNavBar() {
var topNavBar = 	"	<a href=\"index.html\">home</a>" +
					"	<a href=\"catalog.html\" id=\"active\">catalog</a>" +
					"	<a href=\"sale.html\">sale</a>" +
					"	<a href=\"story.html\">our story</a>";
					
document.write(topNavBar);					
}

function writeFooter() {
var footer = 	"	<div class=\"left\">" +
				"		<a href=\"terms.html\">policies</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"contact.html\">contact us</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"story.html\">about us</a>" +
				"	</div>" +
				"" +
				"	<div class=\"right\">" +
				"		Copyright &copy; 2010 <a href=\"index.html\">coloredthreadz.com</a></br><a href=\"http://templates.arcsin.se/\">Website</a> by <a href=\"http://arcsin.se/\">Arcsin</a>" +
				"	</div>";

document.write(footer);

}
