/* Author: Mark Darling

*/


$(document).ready(function () {
    $("#tabs").tabs();
  $("ul li:last-child").addClass("lastchild");
    $("#accordion").accordion({ autoHeight: false });
  $(".product-image-slider").easySlider({ continuous: true });
    $(".banner-image").easySlider({ auto:true, continuous:true, speed:1500, pause:5000 });

    $(".search-form select, .product-search select").selectBox();
    $("#txtLocation").watermark("eee");

    $("#application-select").change(function () {
     if ($(this).val() != -1)
          window.location.href = "/products.aspx?selectedApplication=" + $(this).val();
    });
    $("#range-select").change(function () {
     if ($(this).val() != -1)
          window.location.href = "/products.aspx?selectedRange=" + $(this).val();
    });
    $("#products-select").change(function () {
     if ($(this).val() != -1)
          window.location.href = $(this).val();
    });
});























