﻿$(document).ready(function() {
    $(".hd-text")
    .css("color", "#CCC")
    .focus(function() { $(this).val('').css("color", "#000") })
    .keydown(function(event) {
        switch (event.keyCode) {
            case 13:
                if ($(this).length > 0) {
                    document.location.href = "http://www.kaoshi.sh.cn/s/?action=1&searchkey=" + escape($(".hd-text").val());
                }
                break; 
        }
    });

    $(".hd-sbt").click(function() {
        if ($(".hd-text").val().length > 0 & $(".hd-text").val() != "商品名称 商品编号") {
            document.location.href = "http://www.kaoshi.sh.cn/s/?action=1&searchkey=" + escape($(".hd-text").val());
        }
    });
});

