function SiteMenu() {
document.write('<a href="index.php" class="white">Home</a> &bull; ');
document.write('<a href="favors.php" class="white">Favors for All Occasions</a> &bull; ');
document.write('<a href="weddingcollections.php" class="white">Wedding Collections</a> &bull;');
document.write('<a href="special-access.php" class="white">Special Occasion Accessories</a> &bull; ');
document.write('<a href="giftables.php class="white">Giftables</a> &bull; ');
document.write('<a href="customfavors.php" class="white">Custom Designed Favors</a> &bull; ');
}



function HeaderMap() {
document.write('<map name="Map"><area shape="rect" coords="7,25,248,150" href="http://favorableexpressions.com/index.php">');
document.write('<area shape="rect" coords="280,25,473,49" href="http://favorableexpressions.com/favors.php">');
document.write('<area shape="rect" coords="294,61,459,85" href="http://favorableexpressions.com/weddingcollections.php">');
document.write('<area shape="rect" coords="303,96,522,122" href="http://favorableexpressions.com/special-access.php">');
document.write('<area shape="rect" coords="302,130,484,153" href="http://favorableexpressions.com/giftables.php">');
document.write('<area shape="rect" coords="291,164,486,190" href="http://favorableexpressions.com/customfavors.php">');
document.write('</map>');
}

function hideShow(obj) {
	if (document.getElementById(obj).style.display == "none") { 
		document.getElementById(obj).style.display = "block";
		document.getElementById(obj).disabled = false;
	}
	else {
		document.getElementById(obj).style.display = "none";
		document.getElementById(obj).disabled = true;
	}
}