/*
**
**  Copyright (c) 1997-2003 by Sniglets, Inc., all rights reserved.
**
**  Usage, duplication, and/or modification of this program, its
**  representation, or its results without written permission from
**  Sniglets, Inc. is expressly prohibited.
**
**  $Id: woven.js,v 1.3 2003/03/08 17:13:17 john Exp john $
**
*/

var sb_config_drop_down, sb_products, sb_product, sb_option, sb_options;

sb_config = new Object();
sb_config['label'] = 'valances';
sb_config['name'] = 'Pole Mounted Valances';
sb_config['product_type_list_box'] = 0;
sb_config['product_color_list_box'] = 0;


sb_products = new Array();

sb_product = new Object();
sb_product['name'] = 'Size 50" x 144" - Scarf Valance Group $';
sb_product['url'] = 'http://www.dantehill.com/';
sb_product['colors'] = colors_A;
sb_product['price_unlined'] = 86;
sb_product['price_selflined'] = 150;
sb_product['price_edge'] = 41;
sb_products.push(sb_product);

sb_product = new Object();
sb_product['name'] = 'Size 50" x 144" - Scarf Valance Group $$';
sb_product['url'] = 'http://www.dantehill.com/';
sb_product['colors'] = colors_B;
sb_product['price_unlined'] = 121;
sb_product['price_selflined'] = 221;
sb_product['price_edge'] = 41;
sb_products.push(sb_product);

sb_product = new Object();
sb_product['name'] = 'Size 50" x 144" - Scarf Valance Group $$$';
sb_product['url'] = 'http://www.dantehill.com/';
sb_product['colors'] = colors_C;
sb_product['price_unlined'] = 148;
sb_product['price_selflined'] = 275;
sb_product['price_edge'] = 41;
sb_products.push(sb_product);

sb_product = new Object();
sb_product['name'] = 'Size 50" x 144" - Scarf Valance Group $$$$';
sb_product['url'] = 'http://www.dantehill.com/';
sb_product['colors'] = colors_D;
sb_product['price_unlined'] = 163;
sb_product['price_selflined'] = 303;
sb_product['price_edge'] = 41;
sb_products.push(sb_product);

sb_product = new Object();
sb_product['name'] = 'Size 50" x 216" - Scarf Valance Group $';
sb_product['url'] = 'http://www.dantehill.com/';
sb_product['colors'] = colors_A;
sb_product['price_unlined'] = 115;
sb_product['price_selflined'] = 211;
sb_product['price_edge'] = 50;
sb_products.push(sb_product);

sb_product = new Object();
sb_product['name'] = 'Size 50" x 216" - Scarf Valance Group $$';
sb_product['url'] = 'http://www.dantehill.com/';
sb_product['colors'] = colors_B;
sb_product['price_unlined'] = 168;
sb_product['price_selflined'] = 318;
sb_product['price_edge'] = 50;
sb_products.push(sb_product);

sb_product = new Object();
sb_product['name'] = 'Size 50" x 216" - Scarf Valance Group $$$';
sb_product['url'] = 'http://www.dantehill.com/';
sb_product['colors'] = colors_C;
sb_product['price_unlined'] = 208;
sb_product['price_selflined'] = 397;
sb_product['price_edge'] = 50;
sb_products.push(sb_product);

sb_product = new Object();
sb_product['name'] = 'Size 50" x 216" - Scarf Valance Group $$$$';
sb_product['url'] = 'http://www.dantehill.com/';
sb_product['colors'] = colors_D;
sb_product['price_unlined'] = 229;
sb_product['price_selflined'] = 437;
sb_product['price_edge'] = 50;
sb_products.push(sb_product);


sb_options = new Array();

sb_option = new Object();
sb_option['type'] = 'select';
sb_option['label'] = 'lining';
sb_option['name'] = 'Lining';
sb_option['script_price'] = "if (v == 'Unlined') p = Math.floor(sb_product['price_unlined'] * 100); else if (v == 'Self-lined') p = Math.floor(sb_product['price_selflined'] * 100);";
sb_option['script_string'] = "if (v != '') s = ', Lining: ' + v;";
sb_options.push(sb_option);

sb_option = new Object();
sb_option['type'] = 'select';
sb_option['label'] = 'edge';
sb_option['name'] = 'Decorative trim';
sb_option['script_price'] = "if (v == 'Fringe')  p = Math.floor(sb_product['price_edge'] * 100);";
sb_option['script_string'] = "if (v != '') s = ', Decorative trim: ' + v;";
sb_options.push(sb_option);

