// !!! PLEASE READ !!!
// Only ADD the follwoing categories if they ARE required. 
// Do NOT leave blank variables in this array. 

// productTitle = Product Title 
// rcode 		= Redemption Code
// rcode_plus	= Redemption Code for same product with points + $
// rpoints		= Points required for purchase
// rpoints_plus = Points + $ requred for purchase
// pClass 		= Product Class Category: "bonusClass", "goldClass", "dollarClass", "goldClass".
// productDesc	= Description
// image_src	= Image Source for Thumbnail 

// IF PAGE BREAKS, check:
// Are all { }, [ ], ; , and " " closed?
// Are there no empty or undefined elements?
// Is the product_array[NUMBER] correct? (No double up objects, no mixed numbers within an object.)

var page;
var x = 0;

if (page == "travel") {
	
	var product_array = new Array();

	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Choice Hotels - $50 Accommodation Voucher";
	product_array[x]["rcode"] 				= 2703;
	product_array[x]["rpoints"] 			= "9,000";
	product_array[x]["image_src"] 			= "choice_hotels";
	product_array[x]["productDesc"]			= "With more than 290 properties across Australia, Choice Hotels Australasia enjoy a reputation for excellence in comfortable accommodation and traditional service. Comfort, Quality and Clarion hotels provide a range of accommodation to suit any traveller. Once you have redeemed your vouchers call <strong>13 2400</strong> for reservations and enquiries or visit <strong>www.choicehotels.com.au</strong>";
	product_array[x]["multi_start"]			= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Choice Hotels - $100 Accommodation Voucher";
	product_array[x]["rcode"] 				= 2704;
	product_array[x]["rpoints"] 			= "18,000";
	product_array[x]["image_src"] 			= "choice_hotels";
	product_array[x]["productDesc"]			= "With more than 290 properties across Australia, Choice Hotels Australasia enjoy a reputation for excellence in comfortable accommodation and traditional service. Comfort, Quality and Clarion hotels provide a range of accommodation to suit any traveller. Once you have redeemed your vouchers call <strong>13 2400</strong> for reservations and enquiries or visit <strong>www.choicehotels.com.au</strong>";
	product_array[x]["multi_end"]			= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Rendezvous Hotels - $100 GiftMore Card";
	product_array[x]["rcode"] 				= 2710;
	product_array[x]["rpoints"] 			= "18,000";
	product_array[x]["image_src"] 			= "rendezvous";
	product_array[x]["productDesc"]			= "Redeem your points for a $100 GiftMore Card which can be used to pay for accommodation, meals, bar bills or room service at any participating Rendezvous or Marque Hotel in Australia and New Zealand. <br />  8 great locations throughout Australia and New Zealand. <br /><br />SYDNEY, MELBOURNE, BRISBANE, PERTH, PORT DOUGLAS, CANBERRA, AUCKLAND AND ADELAIDE.";


}
else if (page == "cruises") {
	var product_array = new Array();
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Captain Cook Cruises - $150 Voucher";
	product_array[x]["rcode"] 				= 7199;
	product_array[x]["rpoints"] 			= "22,500";
	product_array[x]["image_src"] 			= "ccook";
	product_array[x]["productDesc"]			= "Visit <strong>www.captaincook.com.au</strong>";
	product_array[x]["conditions"]			= "Voucher to be used towards accommodated cruises.";

}
else if (page == "mileswap") {

	var product_array = new Array();
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Asia Miles&trade; - 2,500 Miles";
	product_array[x]["rcode"] 				= 9900;
	product_array[x]["rpoints"] 			= "5,000";
	product_array[x]["image_src"] 			= "miles_asia";
	product_array[x]["productDesc"] 		= "Asia Miles&trade; is Asia's leading travel reward program that offers you a wide range of rewards to match your lifestyle. You can redeem your HSBC Premier Reward Points for Asia Miles&trade;, which can be redeemed for flights, upgrades companion tickets and other more. You must be a member of the Asia Miles&trade; Program and provide a valid membership number to HSBC in order to redeem points. To register go to www.asiamiles.com. Terms and conditions apply.<br /><br />Please allow 4-6 weeks for processing to your Asia Miles&trade; account.";
	product_array[x]["pClass"]				= new Array("premierClass");

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Singapore Airlines KrisFlyer - 2,500 Miles";
	product_array[x]["rcode"] 				= 9902;
	product_array[x]["rpoints"] 			= "5,000";
	product_array[x]["image_src"] 			= "miles_kris";
	product_array[x]["productDesc"] 		= "Redeem your HSBC Premier Reward Points for KrisFlyer miles which can be used towards flights to more than 1,000 destinations in over 170 countries as well as upgrades on Singapore Airlines, SilkAir and our world-class airline partners. You must be a member of the KrisFlyer Program and provide a valid membership number to HSBC in order to redeem points. If you are not a KrisFlyer member, please register at krisflyer.com. Terms and conditions apply.<br /><br />Please allow 15 working days for the miles to be reflected in your KrisFlyer account.";
	product_array[x]["pClass"]				= new Array("premierClass");

}
else {
	product_array = new Array();
	product_array[0] = new Object();
	product_array[0]["error"] = "<p>Visit back again soon for exciting new products.</p>";
	var errorMsg = product_array[0]["error"];
}

if (product_array) {
	var countArray = product_array.length -1;
}
