$(document).ready(function(){
    $(".discount p a").click(function(){
        $(".iBg").fadeIn("slow");
        $(".iDiscount").fadeIn("slow");
        $(".iDiscount form input:eq(0)").focus();
        return false;
        }) // click
    $(".iDiscount a.close").click(function(){
        $(".iDiscount").fadeOut("slow");
        $(".iBg").fadeOut("slow");
        return false;
        }) // click
    if ($(".iDiscount").length){
        $("#id_name").get(0).onkeyup = function(){
            $(".toPrint p").html($("#id_name").val());
            } // onkeyup
        } // if
    $(".iDiscount form").submit(function(){
        $.post(
            "/discount/new/",
            {name:$("#id_name").val(), email:$("#id_email").val()},
            function(data){
                if (data == "ERR"){
                    $(".iDiscount .error").fadeIn("slow");
                    }
                else{
                    $(".iDiscount form").hide();
                    $(".iDiscount .confirmation").show();
                    }
                } // callback
            )
        return false;
        }) // submit
        $(".iDiscount form input[type=text]").keypress(function(){$(".iDiscount .error:visible").fadeOut("slow");})
    }) // document.ready