/**
 * @author ferreter
 * 
 * THIS IS FOR THE YOGA BAGS RETAIL PRICES
 */

var bagPrices = new Array();
var r = new Array(); // r is for "retail"

// *********  EDIT THESE LINES TO ADD/REMOVE PRODUCTS OR CHANGE PRICES ************
// First set the retail prices.
// Each line represents one product (on the left of equals) and its retail price (on the right of equals)
// Each product is listed using its catalog code.
r['Y5L1'] = '89.99';
r['Y5L2'] = '89.99';
r['Y5L3'] = '89.99';
r['Y5L4'] = '89.99';
r['Y5L5'] = '89.99';
r['Y5L6'] = '89.99';
r['Y6M1'] = '59.95';
r['Y6M2'] = '59.95';
r['Y6M3'] = '59.95';
r['Y6S1'] = '43.97';
r['Y6S2'] = '43.97';
r['Y6S3'] = '43.97';
r['Y6S4'] = '43.97';
// *********** END OF RETAIL EDIT SECTION *********************

bagPrices['retail'] = r;
r = null;
	
if (isWholesaleView())
{
	document.write('<script type="text/javascript" language="JavaScript" src="./wholesale/bagWholesale.js"></script>');
}