﻿/// <reference path="jquery-1.6.2-vsdoc.js" />

$(function () {
    $("#txtsearch").defaultvalue("Keyword or Item #");
    $("#txtemaillist").defaultvalue("Your Email Address Here");
    $("#txtemaillist2").defaultvalue("Enter Email Address");
    $("#zipcode").defaultvalue("Enter Zip Code");
    $(".textbox").focus(function () {
        $(this).attr("style", "border-color:#000;");
    });
    $(".textbox").blur(function () {
        $(this).removeAttr("style");
    });



    $("li.popup > ul > li > a").each(function (index) {
        if ($(this).text().length >= 27) {
            $(this).attr("style", "height:36px;");
            $(this).parentsUntil("ul").attr("style", "height:36px;");
        }
    });

    $("p.shoppingbag").css("cursor", "pointer");
    $("p.shoppingbag").click(function () {
        document.location.href = "/shop.axd/Cart";
    });
});


