$(document).ready(function(){
        $("h3.hidebelow").append("<span>&nbsp;</span>");
        $("h3.hidebelow").each(function(){
                $(this).next("p").hide();
        });
        $("h3.hidebelow").toggle(function(){
                $(this).addClass("active");
                $(this).next("p").show("fast");
        },function(){
                $(this).removeClass("active");
                $(this).next("p").hide("fast");
        });
        $("h3.hidediv").append("<span>&nbsp;</span>");
        $("h3.hidediv").each(function(){
                $(this).next("div").hide();
        });
        $("h3.hidediv").toggle(function(){
                $(this).addClass("active");
                $(this).next("div").show("fast");
        },function(){
                $(this).removeClass("active");
                $(this).next("div").hide("fast");
        });

       $('input[type!=submit]').focus(function() {$(this).addClass('yewow');});
       $('input[type!=submit]').blur(function() {$(this).removeClass('yewow');});
       $('textarea').focus(function() {$(this).addClass('yewow');});
       $('textarea').blur(function() {$(this).removeClass('yewow');});
       $('select').focus(function() {$(this).addClass('yewow');});
       $('select').blur(function() {$(this).removeClass('yewow');});
        $('label').mouseover(function() {$(this).addClass('yewow');});
       $('label').mouseout(function() {$(this).removeClass('yewow');});
});

function coupon() {
        if (! $("#coupon_name").val()) {alert("Please enter your name"); return false;}
        return window.open('','coupon','menubar=yes,width=550,height=400');
}

        
