messages = new Array();
function moveLayers() {
	var layerWidth = 500;
	var pxFromBottom = 0;
	
	var whatDo = "<h2>What does JumpBid do?</h2>";
	whatDo += "<p>Getting the best deals at eBay takes a lot of time, patience, and luck.  If you lack any of these, JumpBid can help.  ";
	whatDo += "Just tell us what items you'd like to search for, what your target price is, and how much warning time you'd like prior to the item closing.  ";
	whatDo += "When an item matching your search is about to close in your price range, we'll send you an email and/or cell phone text message (SMS) with details and a link right to the item at eBay!";
	elWhatDo = new dEl("elWhatDo", layerWidth);
	elWhatDo.write(whatDo);
	elWhatDo.moveToImage("pageBottom", 30, pxFromBottom);
	messages[messages.length] = elWhatDo;

	var cost = "<h2>Does it cost anything?</h2>";
	cost += "<p>Nope.  JumpBid is completely free.  You don't need a credit card to sign up.  There's no watered down demo version, no free trial period, no hidden charges -- just the full functionality of JumpBid at no charge at all.  ";
	cost += "All we ask is that you tell your friends about this website if you like it.<br><br>";
	cost += "If you have auction notifications sent to your cell phone, your cellular provider may charge a small amount per text message received.  This charge will appear on your cellular bill, and is in no way connected with JumpBid.</p>";
	elCost = new dEl("elCost", layerWidth);
	elCost.write(cost);
	elCost.moveToImage("pageBottom", 30, pxFromBottom);
	messages[messages.length] = elCost;
	
	var info = "<h2>What do you do with my information?</h2>";
	info += "<p>All information in your profile will be kept strictly confidential.  JumpBid will not share or sell information about you to any other company or third party.  ";
	info += "Your email address will only be used for JumpBid related notifications.  Your cell phone or pager number will only be used for sending text messages when matching auctions are found.  ";
	info += "JumpBid will never call your cell phone unless you ask us to.  When you create a JumpBid account, you can feel safe knowing that your information will only be used in the way you intend for it to be used.</p>";
	elInfo = new dEl("elInfo", layerWidth);
	elInfo.write(info);
	elInfo.moveToImage("pageBottom", 30, pxFromBottom);
	messages[messages.length] = elInfo;
	
	var started = "<h2>How do I get started?</h2>";
	started += "<p>First, <a href='editPerson.jsp'>create an account</a>.  It's easy, and completely free.  ";
	started += "The account setup process is short, and will give you step by step instructions to help you get started.  ";
	started += "If you encounter any difficulties while creating your free account, please <a href='contact.jsp'>contact us</a>, and we will guide you through the account creation process.</p>";
	elStarted = new dEl("elStarted", layerWidth);
	elStarted.write(started);
	elStarted.moveToImage("pageBottom", 30, pxFromBottom);
	messages[messages.length] = elStarted;

	var discount = "<h2>Deep discounts at JumpBid.com</h2>";
	discount += "<p>No matter what you're looking for, you'll eventually get it for a real bargain if you sit in front of eBay for a few days straight.  ";
	discount += "With JumpBid, you can get those same deep discounts, but you can still have a life.  Just enter the item you're looking for, name your price, and wait.  ";
	discount += "As soon as your dream auction is about to close, we'll notify you by cell phone or email.</p>";
	elDiscount = new dEl("elDiscount", layerWidth);
	elDiscount.write(discount);
	elDiscount.moveToImage("pageBottom", 30, pxFromBottom);
	messages[messages.length] = elDiscount;
	
	var rare = "<h2>Find rare items with JumpBid</h2>";
	rare += "<p>They say eBay has everything, but a really rare item may only come through once every month or two. Unless you're tirelessly searching every day, you might miss one. With JumpBid, that rare item won't slip by. You'll be notified as soon as the item you want comes up for sale again.</p>";
	elRare = new dEl("elRare", layerWidth);
	elRare.write(rare);
	elRare.moveToImage("pageBottom", 30, pxFromBottom);
	messages[messages.length] = elRare;
	
	var buynow = "<h2>Score big deals with \"Buy it Now\" auctions</h2>";
	buynow += "<p>Auctions occasionally close at a great price, but traditional auctions usually close for about the same amount, day after day.  ";
	buynow += "This happens because buyers determine the price, not sellers.  If a seller lists an item for an absurdly low price, it will still get bid up to a typical \"eBay marketplace\" amount.<br><br>";
	buynow += "But \"Buy it Now\" auctions are different.  If a seller underprices a Buy it Now auction, that item will be sold to the first person that sees it online. ";
	buynow += "And with JumpBid, that person is YOU! Whenever you get an auction alert, watch for the words \"Buy it Now!\"  When you see a Buy it Now notification, hop online quickly, and snag a great deal, before anyone else even knows it's there.</p>";
	elBuynow = new dEl("elBuynow", layerWidth);
	elBuynow.write(buynow);
	elBuynow.moveToImage("pageBottom", 30, pxFromBottom);
	messages[messages.length] = elBuynow;
	
	document.loginform.username.focus();
}
window.onload = moveLayers;

function showMessage(layerName) {
	for (var i = 0; i < messages.length; i++) messages[i].hide();
	layerName.show();
}
