	var binderText = "Mrs. A's&reg; Grocery Coupon Organizer comes with a three-ring binder <strong>(9&quot; x 9&quot; x 2&quot;)</strong> made of durable vinyl and is designed to last for years.  The outside of the binder includes a colorful pattern of our watermelon logo. We've designed the binder to fit in the front portion of your shopping cart, so you can easily see your coupons while you shop.  The organizer also includes helpful hints, a penholder, and a convenient slot to hold your shopping list.  We've even added a slot in the back of the binder where you can put your coupons as you select an item at the store.  Then, when you get to the checkout stand, your coupons will be together, not falling all over the floor.";		
	var indexText = "The organizer comes with an index page that is divided into 12 color-coded categories. These tabbed categories make it easy to organize, store, and find your coupons.  The categories have been designed to track the way products are arranged in the aisles of a typical supermarket.  Each category has easy-to-use subheadings. The color-coded categories match those of Mrs. A's&reg; Shopping Lists.<br><br> The categories are:<br><br>1. Produce and Deli<br>2. Bakery and Baking Items<br>3. Prepared and Canned<br>4. Cereal and Breakfast<br>5. Beverages and Snacks<br>6. Meats<br>7. Dairy and Refrigerated<br>8. Cleaning<br>9. Paper and Plastic<br>10. Health and Beauty<br>11. Frozen<br>12. Misc.";
	var couponText = "The real secret of why Mrs. A's&reg; Grocery Coupon Organizer works so well is the coupon holder insert pages.  These pages have been specially designed to hold from 5 to 10 coupons on each side, letting you see \"at a glance\" the coupons you have, rather than fumbling with them one at a time.  Each Mrs. A's Grocery Coupon Organizer comes complete with 12 coupon holder insert pages. <br><br> After purchasing the Mrs. A's Grocery Coupon Organizer, many people have asked to purchase additional coupon holder insert pages.  We now offer 6, 12 or 18 additional inserts that you can buy separately. To order additional coupon holder insert pages, go to our <a href=\"buy.php\">\"Buy Now\"</a> page.";
	var shoppingText = "Mrs. A's&reg; Shopping Lists are color-coded to match the index.  You don't have to write your shopping list on the back on an envelope or on a piece of scrap paper anymore.  The shopping lists also have a place for recording your coupon savings each trip to the supermarket. We've had people buy the organizer just for the shopping lists! Each Mrs. A's Grocery Coupon Organizer comes complete with 3 months of shopping lists (one for each week).<br><br> After purchasing the Mrs. A's Grocery Coupon Organizer, many people have asked to purchase additional shopping lists.  We now offer 3, 6 or 12 months of additional shopping lists that you can buy separately. To order additional shopping lists, go to our <a href=\"buy.php\">\"Buy Now\"</a> page.";
//	var giftsText = "Share Mrs. A's Grocery Coupon Organizer with friends, neighbors, family, and co-workers.  It makes a great gift for holidays, birthdays, and other special occasions.";		
//	var noriskText = "You will be completely saitisfied with your Mrs. A's Grocery Coupon Organizer - we guarantee it.  And we know that you will save more than the cost of the organizer within 30 days.  Our promise is backed by 11 years of satisfied customers.  Our special offer to you is:\n\nIfyou don't save more than the cost of the organizer, or if you are not completely satisfied, simply return the organizer within 30 days for a full refund of the $19.99 purchase price.\n\nBuying Mrs. A's Grocery Coupon Organizer is a smart investment.  It will pay for itself in weeks - it's guaranteed.";		
	
	// create new navItem objects
	var navBinder = new navItem("binder", binderText, "Mrs. A's Binder:");
	var navIndex = new navItem("index", indexText, "Index Page:");
	var navCoupon = new navItem("coupon", couponText, "Coupon Holders:");
	var navShopping = new navItem("shopping", shoppingText, "Shopping Lists:");
//	var navGifts = new navItem("gifts", giftsText, "Great for Gifts:");
//	var navNorisk = new navItem("norisk", noriskText, "No Risk Money Back Offer:");
		
	function navItem(navName, navText, navTitle) {
		this.navName = navName;
		this.navTitle = navTitle;
		this.btnImage = new Image();
		this.btnImage.src = "img/btn_prod_" + navName + "_over.jpg";
		this.mainImage = new Image();
		this.mainImage.src = "img/prod_" + navName + ".jpg";
		this.navText = navText;
	}
	
	// rollover function
	function prodSwap(obj, over) {
		if (over) {
			var nav = new Array("binder", "index", "coupon", "shopping");	
			for (i=0; i<nav.length; i++) {
				document.images[nav[i]].src = document.images[nav[i]].src.replace(/_over/gi, '_off');
			}
			
			document.images[obj.navName].src = document.images[obj.navName].src.replace(/_off/gi, '_over');
			document.images["main"].src = obj.mainImage.src; 
			document.images["main"].alt = obj.navName + " goes here ";
			document.getElementById("prod_text").innerHTML = obj.navText;
			document.getElementById("prod_title").innerHTML = obj.navTitle;	
		} 
		else {
			document.images[obj.navName].src = document.images[obj.navName].src.replace(/_over/gi, '_off');
		}
	}