// (c)2008 uShip, Inc.

var CommoditySelect=function(catID,subcatID){this.catID=catID;this.subcatID=subcatID;this.init();}
CommoditySelect.prototype={init:function(){this.Category=$(this.catID);this.Subcategory=$(this.subcatID);if(this.Category!=null){if(this.Category.length==0)
this._bindCategories();Event.observe(this.Category,'change',this.handleChange.bind(this));this.handleChange();}},handleChange:function(){this.Subcategory.selectedIndex=-1;for(var i=(this.Subcategory.length-1);i>=0;i--){this.Subcategory[i]=null;}
if(this.Category.selectedIndex==0){this._ae('- Any Subcategory -','0');}
else{this._ae('- Select One -','0');}
switch(this.Category.value)
{case'1':this._ae('Furniture','12');this._ae('Home Electronics','13');this._ae('Appliances','14');this._ae('Arcade Equipment','15');this._ae('Lawn & Outdoor Equipment','16');this._ae('Sporting Equipment','17');this._ae('Household Plants','18');this._ae('Other Household Goods','19');break;case'2':this._ae('Wood & Paper Products','20');this._ae('Liquids, Gases & Chemicals','21');this._ae('Construction Material, Equipment & Machinery','22');this._ae('Stone, Metals & Minerals','23');this._ae('Commodities Dry Bulk','24');this._ae('General Freight','25');this._ae('Mixed Freight','26');this._ae('Utilities','27');this._ae('Pharmaceutical Products','28');this._ae('Fertilizers','29');this._ae('Plastics & Rubber','30');this._ae('Textiles, Leather','31');this._ae('Miscellaneous Manufactured Products','32');this._ae('Tradeshow Equipment','33');this._ae('Office Equipment','34');this._ae('Other Business & Industrial Goods','35');break;case'3':this._ae('Small Studio','66');this._ae('Large Studio or 1 BR Apartment','67');this._ae('1 BR Apt','68');this._ae('2 BR Apt','69');this._ae('3 BR Apt or 2 BR house','70');this._ae('3 BR house','71');this._ae('4 BR house','72');this._ae('5+ BR house','73');this._ae('Office','74');this._ae('Mobile Homes','75');this._ae('Tradeshow Equipment','76');this._ae('Trailer Homes','77');this._ae('Other Household & Office Moves','78');break;case'4':this._ae('Cars & Light Trucks','79');this._ae('Recreational Vehicles (RVs)','81');this._ae('Trailers','82');this._ae('Trailer Homes','83');this._ae('Vehicle Parts','84');this._ae('Airplanes','85');this._ae('Antique Vehicles','87');this._ae('Heavy Trucks & Construction Vehicles','88');this._ae('Tractors','91');this._ae('Other Vehicles','92');break;case'5':this._ae('Powerboats','93');this._ae('Sailboats','94');this._ae('Personal Watercraft','95');this._ae('Boat Parts','96');this._ae('Other Boats','97');break;case'6':this._ae('Fresh Produce','98');this._ae('Refrigerated Food','99');this._ae('Meat, Fish, Seafood','100');this._ae('Agricultural/Farm Supplies','101');this._ae('Grain, Feed, Hay','102');this._ae('Cereal Grains (including seed)','103');this._ae('Other Agricultural Products, except for Animal Feed','104');this._ae('Animal Feed & Products of Animal Origin','105');this._ae('Milled Grain Products & Preparations, and Bakery Products','106');this._ae('Beverages','107');this._ae('Alcoholic Beverages','108');this._ae('Other Prepared Foodstuffs, and Fats and Oils','109');this._ae('Tobacco Products','110');this._ae('Other Food & Agriculture','111');break;case'7':this._ae('Antiques','112');this._ae('Art','113');this._ae('Glass/Breakables','114');this._ae('Pianos','115');this._ae('Pool Tables','116');this._ae('Other Special Care Items','117');break;case'8':this._ae('Male','118');this._ae('Female','119');this._ae('Other, Passengers','120');break;case'9':this._ae('Garbage & Refuse','121');this._ae('Waste & Scrap','122');this._ae('Other, Junk','123');break;case'10':this._ae('Cats','124');this._ae('Dogs','125');this._ae('Cattle','126');this._ae('Hogs','127');this._ae('Horses','128');this._ae('Sheep','129');this._ae('Live Fish','130');this._ae('Other Pets & Livestock','131');break;case'11':this._ae('LTL','132');this._ae('Full Truckload','150');this._ae('Intermodal Container','137');break;case'146':this._ae('Motorcycles & Mopeds','80');this._ae('All Terrain Vehicles','86');this._ae('Go Carts & Dune Buggies','89');this._ae('Snowmobiles','90');this._ae('Other Power Sports','147');break;}},_bindCategories:function(){this._aeCat((this.catText==null?'- Any Category -':this.catText),'0');this._aeCat('Household Goods','1');this._aeCat('Moving','3');this._aeCat('Vehicles','4');this._aeCat('Motorcycles','146');this._aeCat('Boats','5');this._aeCat('Freight','11');this._aeCat('Business & Ind.','2');this._aeCat('Pets & Livestock','10');this._aeCat('Special Care','7');this._aeCat('Food & Ag.','6');this._aeCat('Passengers','8');this._aeCat('Junk','9');},_ae:function(text,value){this.Subcategory[this.Subcategory.length]=new Option(text,value,false,false);},_aeCat:function(text,value){this.Category[this.Category.length]=new Option(text,value,false,false);}}