// $cmignore
$(document).ready(function() {
  // hide the submit buttons in the otherlinks section
  $("#otherlinks input").hide();
  
  var sites = {
    "aerospace": "/aerospace/",
    "automotive": "/automotive/",
    "industrial": "/im/",
    "metal-finishes": "/oem/",
    "wood-finishes": "/oem/",
    "plastic-finishes": "/oem/",
    "international": "/international/",
    "pavement": "http://www.swpavementmarkings.com"
  };
  
  var services = {
    "architects": "/pro/services/architects_designers/",
    "painting": "/pro/services/painting_contractors/",
    "home": "/pro/services/home_builders/",
    "property": "/pro/services/property_facility/",
    "siding": "/pro/services/factory_finishers/",
    "custom": "/pro/services/woodworkers/",
    "industrial": "/im/"
  };

  // add event handler to handle redirects if site chosen
  $("#othersites").bind("change", function() {
    window.location = sites[this.value];
  });
  
  $("#proservices").bind("change", function() {
    window.location = services[this.value];
  });
  
});
// $/cmignore
