// JavaScript Document

onload=function() {

var gnav = document.getElementById("gnav")
var aside = document.getElementById("aside")
var menu1 = document.getElementById("menu1linklist")

gnav.innerHTML =
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?vid=20070906001&cid=6345' class='uc'>Home</a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?vid=20070906001&cid=6357'>FAQs</a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?vid=20070906001&cid=6356' class='uc'>Custom Orders</a></li>" +
	"<li><a href='https://www.deltashop.com/simplemerce/managecontact.jsp?VENDORID=20070906001&returntojsp=store.jsp%3fcid%3d6345%26vid%3d20070906001' class='uc'>My Account</a></li>" +
	"<li><a href='https://www.deltashop.com/simplemerce/cvieworders.jsp?VENDORID=20070906001&amp;ORDERTYPE=outstanding' class='uc'>Order History</a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/viewcart.jsp?VENDORID=20070906001' class='uc'>Shopping Cart</a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?vid=20070906001&cid=6358' class='uc last'>Contact Us</a></li>";
//aside.innerHTML =
	//"<div class='section'>" +
	//"<h3>Customer Service</h3>" +
	//"<p>Questions about ordering? Call the Delta Shop Order Desk." +
	//" <strong>+1.866.488.4980</strong> " +
	//"Open from 8:00am - 8:00pm EST Monday through Friday.</p>" +
	//"</div>";
menu1.innerHTML =
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?cid=9252&vid=20070906001&pcid=1'>Y&eacute;le Haiti</a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?cid=8543&vid=20070906001&pcid=1'>What&#39;s New</a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?cid=8544&vid=20070906001&pcid=1'>While Supplies Last</a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?cid=6359&vid=20070906001&pcid=1'>Apparel</a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?cid=6360&vid=20070906001&pcid=1'>Office</a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?cid=6361&vid=20070906001&pcid=1'>Sports &amp; Leisure</a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?cid=6374&vid=20070906001&pcid=1'>Travel</a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?cid=6862&vid=20070906001&pcid=1'>Model Planes</a></li>" +
	"<li class='flypink'><a href='http://www.deltashop.com/simplemerce/store.jsp?cid=7710&vid=20070906001&pcid=1'>Flying Pink - <em>SALE!</em></a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?cid=6435&vid=20070906001&pcid=1'>View All Products</a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?cid=8698&vid=20070906001&pcid=1'>Mrs. Fields Cookies</a></li>" +
	"<li><a href='http://www.deltashop.com/simplemerce/store.jsp?cid=9056&vid=20070906001&pcid=1'>Awards</a></li>";
}


function searchClear() {
	var searchbox = document.getElementById("searchfield")
	var searchdefault = "Product Search"
	if (searchbox.value == "") {
		searchbox.value = searchdefault;	
	}
	else {
		return false;
	}
}

function checkSearch() {
	var searchbox = document.getElementById("searchfield")
	if (searchbox.value == '' || searchbox.value == 'Product Search') {
		return false;	
	}
	else {
		return true;	
	}
}