// !!! 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;

//************************************************

// ENTERTAINMENT

// +++++++++++++++++++++++++++++++++++++++++++++++
 if (page == "adventure") {
	
	var product_array = new Array();
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "$50 Balloon Aloft Voucher<sup>1</sup>";
	product_array[x]["rcode"] 				= 7111;
	product_array[x]["rpoints"] 			= "8,800";
	product_array[x]["productDesc"] 		= "Experience the magic of hot air ballooning when you fly with Australia's original and most experienced ballooning company. For more information visit <strong>www.balloonaloft.com</strong><br><i>1 Cannot be used in conjunction with discounted flight offers.</i>";
	product_array[x]["image_src"] 			= "balloon";
	product_array[x]["pClass"]				= new Array("bonusClass");
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "$100 Balloon Aloft Voucher<sup>1</sup>";
	product_array[x]["rcode"] 				= 7112;
	product_array[x]["rpoints"] 			= "17,600";
	product_array[x]["productDesc"] 		= "Experience the magic of hot air ballooning when you fly with Australia's original and most experienced ballooning company. For more information visit <strong>www.balloonaloft.com</strong><br><i>1 Cannot be used in conjunction with discounted flight offers.</i>";
	product_array[x]["image_src"] 			= "balloon";
	product_array[x]["pClass"]				= new Array("bonusClass");
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Sky Walk + Sydney Tower + OzTrek - Adult Entry";
	product_array[x]["rcode"] 				= 7407;
	product_array[x]["rpoints"] 			= "10,400";
	product_array[x]["productDesc"] 		= "Enjoy 360&deg; open air views from the roof of Sydney Tower, double the height of the Sydney Harbour Bridge.</i>";
	product_array[x]["image_src"] 			= "skywalk";
	product_array[x]["multi_start"]			= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Sky Walk + Sydney Tower + OzTrek - Child Entry (10-15 years)";
	product_array[x]["rcode"] 				= 7408;
	product_array[x]["rpoints"] 			= "7,200";
	product_array[x]["productDesc"] 		= "Enjoy 360&deg; open air views from the roof of Sydney Tower, double the height of the Sydney Harbour Bridge.</i>";
	product_array[x]["image_src"] 			= "skywalk";
	product_array[x]["multi_end"]			= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Sydney Tower + OzTrek - Adult Entry";
	product_array[x]["rcode"] 				= 7417;
	product_array[x]["rpoints"] 			= "4,000";
	product_array[x]["productDesc"] 		= "Sydney Tower + OzTrek takes you to the highest point above the city for a breathtaking 360&deg; panorama of Sydney's beautiful harbour city.";
	product_array[x]["image_src"] 			= "oztrek";
	product_array[x]["multi_start"]			= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Sydney Tower + OzTrek - Child Entry (4-15 years)";
	product_array[x]["rcode"] 				= 7418;
	product_array[x]["rpoints"] 			= "2,400";
	product_array[x]["productDesc"] 		= "Sydney Tower + OzTrek takes you to the highest point above the city for a breathtaking 360&deg; panorama of Sydney's beautiful harbour city.";
	product_array[x]["image_src"] 			= "oztrek";
	product_array[x]["multi"]				= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Sydney Tower + OzTrek - Seniors Entry";
	product_array[x]["rcode"] 				= 7419;
	product_array[x]["rpoints"] 			= "3,100";
	product_array[x]["productDesc"] 		= "Sydney Tower + OzTrek takes you to the highest point above the city for a breathtaking 360&deg; panorama of Sydney's beautiful harbour city.";
	product_array[x]["image_src"] 			= "oztrek";
	product_array[x]["multi_end"]			= 1;

}
else if (page == "aquariums") {
	
	var syd_aquarium = "Visit Australia's No.1 Attraction with over 11,500 all Australian aquatic inhabitants, Sydney Aquarium, Darling Harbour.";

	var product_array = new Array();
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Sydney Aquarium - Adult Entry Ticket";
	product_array[x]["rcode"] 				= 7410;
	product_array[x]["rpoints"] 			= "4,800";
	product_array[x]["productDesc"] 		= syd_aquarium;
	product_array[x]["image_src"] 			= "syd_aqua";
	product_array[x]["multi_start"] 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Sydney Aquarium - Child Entry Ticket (4-15 years)";
	product_array[x]["rcode"] 				= 7412;
	product_array[x]["rpoints"] 			= "2,400";
	product_array[x]["productDesc"] 		= syd_aquarium;
	product_array[x]["image_src"] 			= "syd_aqua";
	product_array[x]["multi"] 				= 1;

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Sydney Aquarium - Pensioner Entry Ticket";
	product_array[x]["rcode"] 				= 7413;
	product_array[x]["rpoints"] 			= "3,250";
	product_array[x]["productDesc"] 		= syd_aquarium;
	product_array[x]["image_src"] 			= "syd_aqua";
	product_array[x]["multi_end"]	 		= 1;


	var nat_aquarium = "Australia's most modern zoo - with a diverse range of exotic and native animals, beautiful large open enclosures (spectacular within themselves) and the only zoo in Australia to include an aquarium! This zoo has the country's largest collection of big cats, and a beautiful atmosphere of closeness with the animals. A variety of amazing animal tours are available. For more information call <strong>(02) 62 878 400</strong> or visit <strong>www.nationalzoo.com.au</strong>";

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "National Zoo & Aquarium - Adult Entry Ticket";
	product_array[x]["rcode"] 				= 7460;
	product_array[x]["rpoints"] 			= "4,800";
	product_array[x]["productDesc"] 		= nat_aquarium;
	product_array[x]["image_src"] 			= "nat_aqua";
	product_array[x]["multi_start"] 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "National Zoo & Aquarium - Child Entry Ticket (4-15 years)";
	product_array[x]["rcode"] 				= 7461;
	product_array[x]["rpoints"] 			= "2,800";
	product_array[x]["productDesc"] 		= nat_aquarium;
	product_array[x]["image_src"] 			= "nat_aqua";
	product_array[x]["multi_end"]			= 1;

	var ocean_world_manly = "Oceanworld's main oceanarium holds 500 million litres of water and is home to the largest sharks in captivity in Australia. The underwater viewing tunnel is 110m long, enabling you to enjoy the wonders of the deep. For more information and Terms and Conditions visit <strong>www.oceanworld.com.au</strong>";
	
	
	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Oceanworld Manly - Adult Entry Ticket";
	product_array[x]["rcode"] 				= 7450;
	product_array[x]["rpoints"] 			= "2,900";
	product_array[x]["productDesc"] 		= ocean_world_manly;
	product_array[x]["image_src"] 			= "ow_manly";
	product_array[x]["multi_start"] 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Oceanworld Manly - Child Entry Ticket (3-15 years)";
	product_array[x]["rcode"] 				= 7451;
	product_array[x]["rpoints"] 			= "1,550";
	product_array[x]["productDesc"] 		= ocean_world_manly;
	product_array[x]["image_src"] 			= "ow_manly";
	product_array[x]["multi"] 				= 1;

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Oceanworld Manly - Pensioner Entry Ticket";
	product_array[x]["rcode"] 				= 7452;
	product_array[x]["rpoints"] 			= "2,100";
	product_array[x]["productDesc"] 		= ocean_world_manly;
	product_array[x]["image_src"] 			= "ow_manly";
	product_array[x]["multi"] 				= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Oceanworld Manly - Sharkdive (fully certified diver) ticket";
	product_array[x]["rcode"] 				= 7453;
	product_array[x]["rcode_plus"] 			= 7455;
	product_array[x]["rpoints"] 			= "28,500";
	product_array[x]["rpoints_plus"] 		= "16,800pts + pay $75";
	product_array[x]["productDesc"] 		= ocean_world_manly;
	product_array[x]["image_src"] 			= "sharkdive";
	product_array[x]["pClass"]				= new Array("dollarClass");
	product_array[x]["multi_start"]			= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Oceanworld Manly - Sharkdive (uncertified diver) ticket";
	product_array[x]["rcode"] 				= 7454;
	product_array[x]["rcode_plus"] 			= 7456;
	product_array[x]["rpoints_plus"] 		= "24,000pts + pay $75";
	product_array[x]["rpoints"] 			= "39,500";
	product_array[x]["productDesc"] 		= ocean_world_manly;
	product_array[x]["image_src"] 			= "sharkdive";
	product_array[x]["pClass"]				= new Array("dollarClass");
	product_array[x]["multi_end"]	 		= 1;
	
}
else if (page == "theme_parks") {
	
	var oz_reptile_park = "Redeem your Rewards Points for tickets to the Australian Reptile Park and experience a ZOO with more bite! Located at Somersby on the NSW Central Coast, Australia's Reptile Park is packed with things to do. For more information call <strong>(02) 4340 1022</strong> or visit <strong>www.reptilepark.com.au</strong>";
	var dreamworld = "Home to some of the tallest and fastest thrill rides in the world, Nickelodeon Central, Wiggles World, Tiger Island, The Australian Wildlife Experience and reality television phenomenon, Big Brother, Dreamworld is getting set to kick start the heart and test your mettle like never before! Opening September, Mick Doohan's Motocoaster will revolutionise The Big 5 Thrill Rides giving you the chance to experience the rush of motorbike racing on the maddest track in the county.";

	var product_array = new Array();
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Australian Outback Spectacular - Adult Entry Ticket";
	product_array[x]["rcode"] 				= 4720;
	product_array[x]["rpoints"] 			= "16,000";
	product_array[x]["image_src"] 			= "outback_spc";
	product_array[x]["multi_start"] 		= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Australian Outback Spectacular - Child Entry Ticket";
	product_array[x]["rcode"] 				= 4721;
	product_array[x]["rpoints"] 			= "11,200";
	product_array[x]["image_src"] 			= "outback_spc";
	product_array[x]["multi"]		 		= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Australian Outback Spectacular - Pensioner Entry Ticket";
	product_array[x]["rcode"] 				= 4722;
	product_array[x]["rpoints"] 			= "14,400";
	product_array[x]["image_src"] 			= "outback_spc";
	product_array[x]["multi_end"]	 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Dreamworld - Adult Entry Ticket";
	product_array[x]["rcode"] 				= 4730;
	product_array[x]["rpoints"] 			= "11,650";
	product_array[x]["productDesc"] 		= dreamworld;
	product_array[x]["image_src"] 			= "dreamworld";
	product_array[x]["multi_start"] 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Dreamworld - Child Entry Ticket (4-15 years)";
	product_array[x]["rcode"] 				= 4731;
	product_array[x]["rpoints"] 			= "7,600";
	product_array[x]["productDesc"] 		= dreamworld;
	product_array[x]["image_src"] 			= "dreamworld";
	product_array[x]["multi"] 				= 1;

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Dreamworld - Concession Entry Ticket";
	product_array[x]["rcode"] 				= 4732;
	product_array[x]["rpoints"] 			= "7,600";
	product_array[x]["productDesc"] 		= dreamworld;
	product_array[x]["image_src"] 			= "dreamworld";
	product_array[x]["multi_end"]	 		= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Dreamworld - 2 Day World Pass Adult Entry";
	product_array[x]["rcode"] 				= 4738;
	product_array[x]["rpoints"] 			= "17,800";
	product_array[x]["productDesc"] 		= "Experience the best of BOTH World's with a 2 Day World Pass. The only theme park ticket that lets you hop between Dreamworld and WhiteWater World as often as you like over 2 days! Our Worlds are conveniently located right next door with an internal access point that makes it fast and simple. No driving between theme parks just walk next door!";
	product_array[x]["image_src"] 			= "dreamworld_wp";
	product_array[x]["multi_start"] 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Dreamworld - 2 Day World Pass Child Entry (4-13 years)";
	product_array[x]["rcode"] 				= 4739;
	product_array[x]["rpoints"] 			= "12,650";
	product_array[x]["productDesc"] 		= "Experience the best of BOTH World's with a 2 Day World Pass. The only theme park ticket that lets you hop between Dreamworld and WhiteWater World as often as you like over 2 days! Our Worlds are conveniently located right next door with an internal access point that makes it fast and simple. No driving between theme parks just walk next door!";
	product_array[x]["image_src"] 			= "dreamworld_wp";
	product_array[x]["multi"] 				= 1;

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Dreamworld - 2 Day World Pass Concession Entry";
	product_array[x]["rcode"] 				= 4733;
	product_array[x]["rpoints"] 			= "12,650";
	product_array[x]["productDesc"] 		= "Experience the best of BOTH World's with a 2 Day World Pass. The only theme park ticket that lets you hop between Dreamworld and WhiteWater World as often as you like over 2 days! Our Worlds are conveniently located right next door with an internal access point that makes it fast and simple. No driving between theme parks just walk next door!";
	product_array[x]["image_src"] 			= "dreamworld_wp";
	product_array[x]["multi_end"]	 		= 1;
	
	var sea_world = "Redeem your Rewards Points for entry vouchers into Sea World. Visit Hudson and Nelson at the Polar bear Shores! For more information visit <strong>www.seaworld.com.au</strong>";

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Sea World - Adult Entry Ticket";
	product_array[x]["rcode"] 				= 4704;
	product_array[x]["rpoints"] 			= "11,200";
	product_array[x]["productDesc"] 		= sea_world;
	product_array[x]["image_src"] 			= "sea_world";
	product_array[x]["multi_start"] 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Sea World - Child Entry Ticket (4-13 years)";
	product_array[x]["rcode"] 				= 4705;
	product_array[x]["rpoints"] 			= "7,300";
	product_array[x]["productDesc"] 		= sea_world;
	product_array[x]["image_src"] 			= "sea_world";
	product_array[x]["multi"] 				= 1;

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Sea World - Pensioner Entry Ticket";
	product_array[x]["rcode"] 				= 4706;
	product_array[x]["rpoints"] 			= "7,300";
	product_array[x]["productDesc"] 		= sea_world;
	product_array[x]["image_src"] 			= "sea_world";
	product_array[x]["multi_end"]	 		= 1;

	var warner_bros = "Redeem your Rewards Points for entry vouchers to Warner Bros. Movie World, where movie magic happens everyday. For more information visit <strong>www.movieworld.com.au</strong>";

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Warner Bros Movie World Adult Entry Ticket";
	product_array[x]["rcode"] 				= 4707;
	product_array[x]["rpoints"] 			= "11,200";
	product_array[x]["productDesc"] 		= warner_bros;
	product_array[x]["image_src"] 			= "w_bros";
	product_array[x]["multi_start"] 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Warner Bros Movie World Child Entry Ticket (4-13 years)";
	product_array[x]["rcode"] 				= 4708;
	product_array[x]["rpoints"] 			= "7,300";
	product_array[x]["productDesc"] 		= warner_bros;
	product_array[x]["image_src"] 			= "w_bros";
	product_array[x]["multi"] 				= 1;

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Warner Bros Movie World Pensioner Entry Ticket";
	product_array[x]["rcode"] 				= 4709;
	product_array[x]["rpoints"] 			= "7,300";
	product_array[x]["productDesc"] 		= warner_bros;
	product_array[x]["image_src"] 			= "w_bros";
	product_array[x]["multi_end"]	 		= 1;

	var super_pass_wb = "Experience three times the action when you buy an UNLIMITED 3 Park Super Pass which gives you UNLIMITED entry to Warner Bros. Movie World, Sea World and Wet 'n' Wild for up to 14 days. That's right, visit any park, any day and as many times as you like for up to 14 days!";
	var super_pass_wb_con = "Guests must redeem their first day's entry ticket to all 3 parks to receive UNLIMITED entry on bonus pass. Photo identification must be presented on each entry.<br /> Between 27 December and 25 January bonus unlimited entry to Wet 'n' Wild Water World is only available from 4pm until the park closes at the end of the Dive-In Movie (approx 9pm).";

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Warner Village Theme Parks, QLD 3 Park Super Pass Adult Entry Ticket";
	product_array[x]["rcode"] 				= 4712;
	product_array[x]["rpoints"] 			= "30,300";
	product_array[x]["productDesc"] 		= super_pass_wb;
	product_array[x]["conditions"] 			= super_pass_wb_con;
	product_array[x]["image_src"] 			= "sw_bros";
	product_array[x]["multi_start"] 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Warner Village Theme Parks, QLD 3 Park Super Pass Child Entry Ticket (4-13 years)";
	product_array[x]["rcode"] 				= 4710;
	product_array[x]["rpoints"] 			= "20,800";
	product_array[x]["productDesc"] 		= super_pass_wb;
	product_array[x]["conditions"] 			= super_pass_wb_con;
	product_array[x]["image_src"] 			= "sw_bros";
	product_array[x]["multi"] 				= 1;

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Warner Village Theme Parks, QLD 3 Park Super Pass Pensioner Entry Ticket";
	product_array[x]["rcode"] 				= 4711;
	product_array[x]["rpoints"] 			= "20,800";
	product_array[x]["productDesc"] 		= super_pass_wb;
	product_array[x]["conditions"] 			= super_pass_wb_con;
	product_array[x]["image_src"] 			= "sw_bros";
	product_array[x]["multi_end"]	 		= 1;
	
	var wet_n_wild = " 	Redeem your Rewards Points for entry vouchers into Wet 'n' Wild Water World, Australia's biggest waterpark. For more information visit </strong>www.wetnwild.com.au</strong>";
	
	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Wet 'n' Wild, QLD Adult Entry Ticket";
	product_array[x]["rcode"] 				= 4701;
	product_array[x]["rpoints"] 			= "8,000";
	product_array[x]["productDesc"] 		= wet_n_wild;
	product_array[x]["image_src"] 			= "w_n_w";
	product_array[x]["multi_start"] 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Wet 'n' Wild, QLD Child Entry Ticket (4-13 years)";
	product_array[x]["rcode"] 				= 4702;
	product_array[x]["rpoints"] 			= "5,250";
	product_array[x]["productDesc"] 		= wet_n_wild;
	product_array[x]["image_src"] 			= "w_n_w";
	product_array[x]["multi"] 				= 1;
	
	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Wet 'n' Wild, QLD Pensioner Entry Ticket";
	product_array[x]["rcode"] 				= 4703;
	product_array[x]["rpoints"] 			= "5,250";
	product_array[x]["productDesc"] 		= wet_n_wild;
	product_array[x]["image_src"] 			= "w_n_w";
	product_array[x]["multi_end"]	 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Whitewater World - Adult Entry Ticket";
	product_array[x]["rcode"] 				= 4735;
	product_array[x]["rpoints"] 			= "7,300";
	product_array[x]["productDesc"] 		= "From family friendly attractions to the most extreme waterslides, WhiteWater World is thrills for all ages. Call 1800 073 300 or visit www.whitewaterworld.com.au."
	product_array[x]["image_src"] 			= "whitewater";
	product_array[x]["multi_start"]	 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Whitewater World - Child Entry Ticket(4-13 years)";
	product_array[x]["rcode"] 				= 4736;
	product_array[x]["rpoints"] 			= "4,850";
	product_array[x]["productDesc"] 		= "From family friendly attractions to the most extreme waterslides, WhiteWater World is thrills for all ages. Call 1800 073 300 or visit www.whitewaterworld.com.au."
	product_array[x]["image_src"] 			= "whitewater";
	product_array[x]["multi"]		 		= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Whitewater World - Pensioner Entry Ticket";
	product_array[x]["rcode"] 				= 4737;
	product_array[x]["rpoints"] 			= "4,850";
	product_array[x]["productDesc"] 		= "From family friendly attractions to the most extreme waterslides, WhiteWater World is thrills for all ages. Call 1800 073 300 or visit www.whitewaterworld.com.au."
	product_array[x]["image_src"] 			= "whitewater";
	product_array[x]["multi"]		 		= 1;

	/*x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "2 Day World Pass - Adult Entry Ticket";
	product_array[x]["rcode"] 				= 4737;
	product_array[x]["rpoints"] 			= "4,000";
	product_array[x]["productDesc"] 		= "From family friendly attractions to the most extreme waterslides, WhiteWater World is thrills for all ages. Call 1800 073 300 or visit www.whitewaterworld.com.au."
	product_array[x]["image_src"] 			= "whitewater";
	product_array[x]["multi"]		 		= 1; */
	
	

//************************************************

// MOVIES

// +++++++++++++++++++++++++++++++++++++++++++++++
}
else if (page == "cruises_et") {

	var product_array = new Array();

	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Captain Cook Cruises - Adult Coffee Cruise";
	product_array[x]["rcode"] 				= 7201;
	product_array[x]["rpoints"] 			= "7,400";
	product_array[x]["image_src"] 			= "ccook";
	product_array[x]["productDesc"]			= "Visit the beaches, landmarks and beautiful waterfront homes of Sydney Harbour, whilst enjoying the exceptional style and service of Captain Cook Cruises. For more information visit <strong>www.captaincook.com.au</strong>";
	product_array[x]["multi_start"]			= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Captain Cook Cruises - Child Coffee Cruise (5 - 14 years)";
	product_array[x]["rcode"] 				= 7202;
	product_array[x]["rpoints"] 			= "4,200";
	product_array[x]["image_src"] 			= "ccook";
	product_array[x]["productDesc"]			= "Visit the beaches, landmarks and beautiful waterfront homes of Sydney Harbour, whilst enjoying the exceptional style and service of Captain Cook Cruises. For more information visit <strong>www.captaincook.com.au</strong>";
	product_array[x]["multi"]				= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Captain Cook Cruises - Concession Coffee Cruise";
	product_array[x]["rcode"] 				= 7203;
	product_array[x]["rpoints"] 			= "5,900";
	product_array[x]["image_src"] 			= "ccook";
	product_array[x]["productDesc"]			= "Visit the beaches, landmarks and beautiful waterfront homes of Sydney Harbour, whilst enjoying the exceptional style and service of Captain Cook Cruises. For more information visit <strong>www.captaincook.com.au</strong>";
	product_array[x]["multi_end"]			= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Captain Cook Cruises - Adult Buffet Lunch Cruise";
	product_array[x]["rcode"] 				= 7204;
	product_array[x]["rpoints"] 			= "10,800";
	product_array[x]["image_src"] 			= "ccook";
	product_array[x]["productDesc"]			= "Visit the beaches, landmarks and beautiful waterfront homes of Sydney Harbour, whilst enjoying the exceptional style and service of Captain Cook Cruises. For more information visit <strong>www.captaincook.com.au</strong>";
	product_array[x]["multi_start"]			= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Captain Cook Cruises - Child Buffet Lunch Cruise (5 - 14 years)";
	product_array[x]["rcode"] 				= 7205;
	product_array[x]["rpoints"] 			= "6,150";
	product_array[x]["image_src"] 			= "ccook";
	product_array[x]["productDesc"]			= "Visit the beaches, landmarks and beautiful waterfront homes of Sydney Harbour, whilst enjoying the exceptional style and service of Captain Cook Cruises. For more information visit <strong>www.captaincook.com.au</strong>";
	product_array[x]["multi"]				= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Captain Cook Cruises - Concession Buffet Lunch Cruise ";
	product_array[x]["rcode"] 				= 7206;
	product_array[x]["rpoints"] 			= "9,000";
	product_array[x]["image_src"] 			= "ccook";
	product_array[x]["productDesc"]			= "Visit the beaches, landmarks and beautiful waterfront homes of Sydney Harbour, whilst enjoying the exceptional style and service of Captain Cook Cruises. For more information visit <strong>www.captaincook.com.au</strong>";
	product_array[x]["multi_end"]			= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Captain Cook Cruises - Adult Sydney 2000 Dinner Cruise";
	product_array[x]["rcode"] 				= 7207;
	product_array[x]["rpoints"] 			= "20,100";
	product_array[x]["image_src"] 			= "ccook";
	product_array[x]["productDesc"]			= "Visit the beaches, landmarks and beautiful waterfront homes of Sydney Harbour, whilst enjoying the exceptional style and service of Captain Cook Cruises. For more information visit <strong>www.captaincook.com.au</strong>";
	product_array[x]["multi_start"]			= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Captain Cook Cruises - Child Sydney 2000 Dinner Cruise (5 - 14 years)";
	product_array[x]["rcode"] 				= 7208;
	product_array[x]["rpoints"] 			= "11,850";
	product_array[x]["image_src"] 			= "ccook";
	product_array[x]["productDesc"]			= "Visit the beaches, landmarks and beautiful waterfront homes of Sydney Harbour, whilst enjoying the exceptional style and service of Captain Cook Cruises. For more information visit <strong>www.captaincook.com.au</strong>";	
	product_array[x]["multi"]				= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Captain Cook Cruises - Concession Sydney 2000 Dinner Cruise";
	product_array[x]["rcode"] 				= 7209;
	product_array[x]["rpoints"] 			= "14,850";
	product_array[x]["image_src"] 			= "ccook";
	product_array[x]["productDesc"]			= "Visit the beaches, landmarks and beautiful waterfront homes of Sydney Harbour, whilst enjoying the exceptional style and service of Captain Cook Cruises. For more information visit <strong>www.captaincook.com.au</strong>";	
	product_array[x]["multi_end"]			= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Quicksilver, QLD - Outer Barrier Reef Cruise - Adult";
	product_array[x]["rcode"] 				= 7301;
	product_array[x]["rpoints"] 			= "33,000";
	product_array[x]["productDesc"]			= "Sleek wavepiercing catamarans will take you in comfort to a spacious reef activity platform at Agincourt Reef, at the very outer edge of the Great Barrier Reef. The perfect destination for swimmers and non-swimmers to experience this stunning reef world. With Quicksilver you can choose to snorkel, or stay dry and explore from of a semi-submarine and underwater observatory with optional dive activities.<br /><br /> For bookings contact Quicksilver direct on (07) 4087 2100."
	product_array[x]["multi_start"]			= 1;
	product_array[x]["image_src"] 			= "quicksilver";

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Quicksilver, QLD - Outer Barrier Reef Cruise - Child (4-14 years)";
	product_array[x]["rcode"] 				= 7302;
	product_array[x]["rpoints"] 			= "16,900";
	product_array[x]["productDesc"]			= "Sleek wavepiercing catamarans will take you in comfort to a spacious reef activity platform at Agincourt Reef, at the very outer edge of the Great Barrier Reef. The perfect destination for swimmers and non-swimmers to experience this stunning reef world. With Quicksilver you can choose to snorkel, or stay dry and explore from of a semi-submarine and underwater observatory with optional dive activities.<br /><br /> For bookings contact Quicksilver direct on (07) 4087 2100."
	product_array[x]["multi"]				= 1;
	product_array[x]["image_src"] 			= "quicksilver";

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Quicksilver, QLD - Wavedancer Low Isles - Adult";
	product_array[x]["rcode"] 				= 7303;
	product_array[x]["rpoints"] 			= "22,500";
	product_array[x]["productDesc"]			= "Luxury catamaran, Wavedancer, sails to Low Isles, an idyllic unspoilt Coral Cay. Enjoy snorkelling, exploring the island with a marine biologist, view the corals through a glass bottom boat, laze on the beach under thatched umbrellas, or on the decks of Wavedancer.<br /><br /> For bookings contact Quicksilver direct on (07) 4087 2100."
	product_array[x]["multi"]				= 1;
	product_array[x]["image_src"] 			= "quicksilver";

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Quicksilver, QLD - Wavedancer Low Isles - Child (4-14 years)";
	product_array[x]["rcode"] 				= 7304;
	product_array[x]["rpoints"] 			= "11,700";
	product_array[x]["productDesc"]			= "Luxury catamaran, Wavedancer, sails to Low Isles, an idyllic unspoilt Coral Cay. Enjoy snorkelling, exploring the island with a marine biologist, view the corals through a glass bottom boat, laze on the beach under thatched umbrellas, or on the decks of Wavedancer.<br /><br /> For bookings contact Quicksilver direct on (07) 4087 2100."
	product_array[x]["multi_end"]			= 1;
	product_array[x]["image_src"] 			= "quicksilver";

}
else if (page == "movies") {
	
	var hoyts = "Catch the latest release with a Hoyts movie ticket or enjoy the ultimate movie experience at La Premiere. For more information visit </strong>www.hoyts.com.au</strong>";
	var hoyts_con = "Hoyts vouchers can now be redeemed at any Hoyts or AMC (Australian Multiplex Cinemas) across Australia.";
	
	var product_array = new Array();

	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "2 x Adult Movie Vouchers";
	product_array[x]["rcode"] 				= 4100;
	product_array[x]["rpoints"] 			= "4,000";
	product_array[x]["companyTitle"]		= "HOYTS";
	product_array[x]["productDesc"] 		= hoyts;
	product_array[x]["conditions"]			= hoyts_con;
	product_array[x]["image_src"] 			= "hoyts";
	product_array[x]["multi_start"]	 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "4 x Adult Movie Tickets";
	product_array[x]["rcode"] 				= 4104;
	product_array[x]["rpoints"] 			= "8,000";
	product_array[x]["companyTitle"]		= "HOYTS";
	product_array[x]["productDesc"] 		= hoyts;
	product_array[x]["conditions"]			= hoyts_con;
	product_array[x]["image_src"] 			= "hoyts";
	product_array[x]["multi"]	 			= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "10 x Adult Movie Tickets";
	product_array[x]["rcode"] 				= 4107;
	product_array[x]["rpoints"] 			= "20,000";
	product_array[x]["companyTitle"]		= "HOYTS";
	product_array[x]["productDesc"] 		= hoyts;
	product_array[x]["conditions"]			= hoyts_con;
	product_array[x]["image_src"] 			= "hoyts";
	product_array[x]["multi"]	 			= 1;
	
	/*x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "20 x Adult Movie Tickets + 2 FREE Tickets";
	product_array[x]["rcode"] 				= 4108;
	product_array[x]["rpoints"] 			= "38,000";
	product_array[x]["companyTitle"]		= "HOYTS";
	product_array[x]["productDesc"] 		= "Redeem your points for 20 HOYTS Adult Standard Super Savers and receive 2 bonus Super Savers absolutely free! With this offer there's really no reason why you'd miss the movie of the moment on the big screen.";
	product_array[x]["conditions"]			= hoyts_con + " Offer valid until 7 October 2007";
	product_array[x]["image_src"] 			= "hoyts_supersaver";
	product_array[x]["multi"]	 			= 1;*/
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "2 x Child Movie Vouchers";
	product_array[x]["rcode"] 				= 4111;
	product_array[x]["rpoints"] 			= "3,400";
	product_array[x]["companyTitle"]		= "HOYTS";
	product_array[x]["productDesc"] 		= hoyts;
	product_array[x]["conditions"]			= hoyts_con;
	product_array[x]["image_src"] 			= "hoyts";
	product_array[x]["multi"]	 			= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "La Premiere Gift Pass";
	product_array[x]["rcode"] 				= 4201;
	product_array[x]["rpoints"] 			= "5,000";
	product_array[x]["companyTitle"]		= "HOYTS";
	product_array[x]["productDesc"] 		= hoyts;
	product_array[x]["conditions"]			= hoyts_con;
	product_array[x]["image_src"] 			= "hoyts";
	product_array[x]["multi"]		 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "2 x La Premiere Gift Passes";
	product_array[x]["rcode"] 				= 4103;
	product_array[x]["rpoints"] 			= "10,000";
	product_array[x]["companyTitle"]		= "HOYTS";
	product_array[x]["productDesc"] 		= hoyts;
	product_array[x]["conditions"]			= hoyts_con;
	product_array[x]["image_src"] 			= "hoyts";
	product_array[x]["multi_end"]	 		= 1;
	
	var imax = "Redeem your Rewards Points for tickets to be used at IMAX Theatres in Sydney and in Melbourne. Experience the latest in film technology on the world's largest screen - eight storeys high. For more information visit www.imax.com.au or <strong> www.imaxmelbourne.com.au</strong>";

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "IMAX Sydney - Adult Movie Ticket";
	product_array[x]["rcode"] 				= 4601;
	product_array[x]["rpoints"] 			= "3,000";
	product_array[x]["companyTitle"]		= "IMAX";
	product_array[x]["productDesc"] 		= imax;
	product_array[x]["image_src"] 			= "imax";
	product_array[x]["multi_start"]	 		= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "IMAX Sydney - Child Movie Ticket (3-15 years)";
	product_array[x]["rcode"] 				= 4602;
	product_array[x]["rpoints"] 			= "2,300";
	product_array[x]["companyTitle"]		= "IMAX";
	product_array[x]["productDesc"] 		= imax;
	product_array[x]["image_src"] 			= "imax";
	product_array[x]["multi"]		 		= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "IMAX Sydney - Family Pass (2 Adults &nbsp; 2 Children)";
	product_array[x]["rcode"] 				= 4603;
	product_array[x]["rpoints"] 			= "10,600";
	product_array[x]["companyTitle"]		= "IMAX";
	product_array[x]["productDesc"] 		= imax;
	product_array[x]["image_src"] 			= "imax";
	product_array[x]["multi"]		 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "IMAX Melbourne - Family Pass (2 Adults &nbsp; 2 Children)";
	product_array[x]["rcode"] 				= 4606;
	product_array[x]["rpoints"] 			= "10,600";
	product_array[x]["companyTitle"]		= "IMAX";
	product_array[x]["productDesc"] 		= imax;
	product_array[x]["image_src"] 			= "imax";
	product_array[x]["multi"]		 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "IMAX Melbourne - Adult Movie Ticket";
	product_array[x]["rcode"] 				= 4604;
	product_array[x]["rpoints"] 			= "3,000";
	product_array[x]["companyTitle"]		= "IMAX";
	product_array[x]["productDesc"] 		= imax;
	product_array[x]["image_src"] 			= "imax";
	product_array[x]["multi"]	 			= 1;

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "IMAX Melbourne - Child Movie Ticket (3-15 years)";
	product_array[x]["rcode"] 				= 4605;
	product_array[x]["rpoints"] 			= "2,300";
	product_array[x]["companyTitle"]		= "IMAX";
	product_array[x]["productDesc"] 		= imax;
	product_array[x]["image_src"] 			= "imax";
	product_array[x]["multi_end"]	 		= 1;

	var greater_union = "Catch the latest movie releases and enjoy a great night out at Village Cinemas, Greater Union or Birch Carroll & Coyle locations throughout Australia.";

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "1 x Gold Class Ticket";
	product_array[x]["rcode"] 				= 4151;
	product_array[x]["rpoints"] 			= "6,000";
	product_array[x]["companyTitle"]		= "Village Cinemas, Greater Untion, Birch Carroll & Coyle";
	product_array[x]["productDesc"] 		= greater_union;
	product_array[x]["image_src"] 			= "g_union";
	product_array[x]["multi_start"]	 		= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "2 x Adult Screen Saver Movie Tickets";
	product_array[x]["rcode"] 				= 4152;
	product_array[x]["rpoints"] 			= "4,000";
	product_array[x]["companyTitle"]		= "Village Cinemas, Greater Untion, Birch Carroll & Coyle";
	product_array[x]["productDesc"] 		= greater_union;
	product_array[x]["image_src"] 			= "g_union";
	product_array[x]["multi"]	 			= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "2 x Village Gold Class Tickets";
	product_array[x]["rcode"] 				= 4153;
	product_array[x]["rpoints"] 			= "12,000";
	product_array[x]["companyTitle"]		= "Village Cinemas, Greater Untion, Birch Carroll & Coyle";
	product_array[x]["productDesc"] 		= greater_union;
	product_array[x]["image_src"] 			= "g_union";
	product_array[x]["multi"]	 			= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "4 x Village Adult Movie Tickets";
	product_array[x]["rcode"] 				= 4154;
	product_array[x]["rpoints"] 			= "8,000";
	product_array[x]["companyTitle"]		= "Village Cinemas, Greater Untion, Birch Carroll & Coyle";
	product_array[x]["productDesc"] 		= greater_union;
	product_array[x]["image_src"] 			= "g_union";
	product_array[x]["multi"]		 		= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "10 x Village Adult Movie Tickets";
	product_array[x]["rcode"] 				= 4155;
	product_array[x]["rpoints"] 			= "20,000";
	product_array[x]["companyTitle"]		= "Village Cinemas, Greater Untion, Birch Carroll & Coyle";
	product_array[x]["productDesc"] 		= greater_union;
	product_array[x]["image_src"] 			= "g_union";
	product_array[x]["multi"]		 		= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "2 x Child Screen Saver Movie Tickets";
	product_array[x]["rcode"] 				= 4156;
	product_array[x]["rpoints"] 			= "3,400";
	product_array[x]["companyTitle"]		= "Village Cinemas, Greater Untion, Birch Carroll & Coyle";
	product_array[x]["productDesc"] 		= greater_union;
	product_array[x]["image_src"] 			= "g_union";
	product_array[x]["multi_end"]	 		= 1;


}
else if (page == "zoo") {
	
	var currumbin = "At Currumbin Wildlife Sanctuary, get closer to Australia's wildlife and be amazed. Noisy flocks of wild lorikeets, free-ranging kangaroos and cuddly koalas are all part of Currumbin's unforgettable wildlife experiences." 
	var product_array = new Array();
	
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Currumbin Wildlife Sanctuary - Adult Entry Ticket";
	product_array[x]["rcode"] 				= 4740;
	product_array[x]["rpoints"] 			= "6,200";
	product_array[x]["productDesc"] 		= currumbin;
	product_array[x]["image_src"] 			= "currumbin";
	product_array[x]["multi_start"]			= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Currumbin Wildlife Sanctuary - Child Entry Ticket";
	product_array[x]["rcode"] 				= 4741;
	product_array[x]["rpoints"] 			= "3,350";
	product_array[x]["productDesc"] 		= currumbin;
	product_array[x]["image_src"] 			= "currumbin";
	product_array[x]["multi"]				= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Currumbin Wildlife Sanctuary - Pensioner Entry Ticket";
	product_array[x]["rcode"] 				= 4742;
	product_array[x]["rpoints"] 			= "4,950";
	product_array[x]["productDesc"] 		= currumbin;
	product_array[x]["image_src"] 			= "currumbin";
	product_array[x]["multi_end"]			= 1;
	
	var nat_aquarium = "Australia's most modern zoo - with a diverse range of exotic and native animals, beautiful large open enclosures (spectacular within themselves) and the only zoo in Australia to include an aquarium! This zoo has the country's largest collection of big cats, and a beautiful atmosphere of closeness with the animals. A variety of amazing animal tours are available. For more information call <strong>(02) 62 878 400</strong> or visit <strong>www.nationalzoo.com.au</strong>";

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "National Zoo & Aquarium - Adult Entry Ticket";
	product_array[x]["rcode"] 				= 7460;
	product_array[x]["rpoints"] 			= "4,800";
	product_array[x]["productDesc"] 		= nat_aquarium;
	product_array[x]["image_src"] 			= "nat_aqua";
	product_array[x]["multi_start"] 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "National Zoo & Aquarium - Child Entry Ticket (4-15 years)";
	product_array[x]["rcode"] 				= 7461;
	product_array[x]["rpoints"] 			= "2,800";
	product_array[x]["productDesc"] 		= nat_aquarium;
	product_array[x]["image_src"] 			= "nat_aqua";
	product_array[x]["multi_end"]			= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Reptile Park - Adult Entry Ticket";
	product_array[x]["rcode"] 				= 7480;
	product_array[x]["rpoints"] 			= "3,600";
	product_array[x]["productDesc"] 		= oz_reptile_park;
	product_array[x]["image_src"] 			= "reptile_park";
	product_array[x]["multi_start"] 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Reptile Park - Child Entry Ticket (4-15 years)";
	product_array[x]["rcode"] 				= 7481;
	product_array[x]["rpoints"] 			= "1,850";
	product_array[x]["productDesc"] 		= oz_reptile_park;
	product_array[x]["image_src"] 			= "reptile_park";
	product_array[x]["multi"] 				= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Reptile Park - Concession Entry Ticket";
	product_array[x]["rcode"] 				= 7482;
	product_array[x]["rpoints"] 			= "2,400";
	product_array[x]["productDesc"] 		= oz_reptile_park;
	product_array[x]["image_src"] 			= "reptile_park";
	product_array[x]["multi_end"]	 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Sydney Wildlife World - Adult Entry Ticket";
	product_array[x]["rcode"] 				= 7414;
	product_array[x]["rpoints"] 			= "4,800";
	product_array[x]["productDesc"] 		= "Sydney Wildlife World is a showcase of Australia's unique and bizarre flora and fauna, right in the heart of Sydney. Call (02) 9333 9288 or visit www.sydneywildlifeworld.com.au.";
	product_array[x]["image_src"] 			= "sydney_ww";
	product_array[x]["multi_start"]	 		= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Sydney Wildlife World - Child Entry Ticket (3-15 years)";
	product_array[x]["rcode"] 				= 7415;
	product_array[x]["rpoints"] 			= "2,400";
	product_array[x]["productDesc"] 		= "Sydney Wildlife World is a showcase of Australia's unique and bizarre flora and fauna, right in the heart of Sydney. Call (02) 9333 9288 or visit www.sydneywildlifeworld.com.au.";
	product_array[x]["image_src"] 			= "sydney_ww";
	product_array[x]["multi"]	 			= 1;

	x = x + 1;
	product_array[x] = new Object();
	product_array[x]["productTitle"] 		= "Sydney Wildlife World - Concession Entry Ticket";
	product_array[x]["rcode"] 				= 7416;
	product_array[x]["rpoints"] 			= "3,250";
	product_array[x]["productDesc"] 		= "Sydney Wildlife World is a showcase of Australia's unique and bizarre flora and fauna, right in the heart of Sydney. Call (02) 9333 9288 or visit www.sydneywildlifeworld.com.au.";
	product_array[x]["image_src"] 			= "sydney_ww";
	product_array[x]["multi_end"]	 		= 1;

	var taronga_zoo = "Redeem your Rewards Points for vouchers to be used at Taronga Zoo and Western Plains Zoo. Taronga Zoo - see Australia's unique wildlife and exotic animals from all over the world. Western Plains Zoo - drive, walk or cycle to see the homes of more than a thousand animals. For more information visit </strong>www.zoo.nsw.gov.au</strong>";

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Taronga Zoo Adult Ticket";
	product_array[x]["rcode"] 				= 7431;
	product_array[x]["rpoints"] 			= "7,000";
	product_array[x]["productDesc"] 		= taronga_zoo;
	product_array[x]["image_src"] 			= "taronga_zoo";
	product_array[x]["multi_start"] 		= 1;
	
	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Child Entry Ticket (4-15 years)";
	product_array[x]["rcode"] 				= 7432;
	product_array[x]["rpoints"] 			= "3,400";
	product_array[x]["productDesc"] 		= taronga_zoo;
	product_array[x]["image_src"] 			= "taronga_zoo";
	product_array[x]["multi"] 				= 1;

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Western Plains Zoo - Adult Entry Ticket";
	product_array[x]["rcode"] 				= 7441;
	product_array[x]["rpoints"] 			= "7,800";
	product_array[x]["productDesc"] 		= taronga_zoo;
	product_array[x]["image_src"] 			= "taronga_zoo";
	product_array[x]["multi"] 				= 1;

	x = x + 1;
	product_array[x] = new Object();

	product_array[x]["productTitle"] 		= "Western Plains Zoo - Child Entry Ticket";
	product_array[x]["rcode"] 				= 7442;
	product_array[x]["rpoints"] 			= "3,800";
	product_array[x]["productDesc"] 		= taronga_zoo;
	product_array[x]["image_src"] 			= "taronga_zoo";
	product_array[x]["multi_end"]	 		= 1;

}
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;
}