$(document).ready(function(){
$("#coupon-form").submit(function() {
     if ($("#coupon-code").val().toLowerCase() == "ato10") {
               $("#skupp101").replaceWith("<input id=\"skupp101\" type=\"hidden\" name=\"price\" value=\"149\" />");
               $("#skupp102").replaceWith("<input id=\"skupp102\" type=\"hidden\" name=\"price\" value=\"349\" />");
               $("#skupp103").replaceWith("<input id=\"skupp103\" type=\"hidden\" name=\"price\" value=\"549\" />");               
               $("#skupp104").replaceWith("<input id=\"skupp104\" type=\"hidden\" name=\"price\" value=\"649\" />");
               $("#coupon-form").replaceWith("<strong>Coupon Accepted!</strong><br />Now, select your product below.").show();
       return false;
     }
     else if ($("input:first").val().toLowerCase() == "fam10") {
               $("#skupp101").replaceWith("<input id=\"skupp101\" type=\"hidden\" name=\"price\" value=\"99\" />");
               $("#coupon-form").replaceWith("<strong>Coupon Accepted!</strong><br />Now, select your product below.").show();
       return false;
     }
     else if ($("input:first").val().toLowerCase() == "wisjc2") {
               $("#skupp101").replaceWith("<input id=\"skupp101\" type=\"hidden\" name=\"price\" value=\"149\" />");
               $("#skupp102").replaceWith("<input id=\"skupp102\" type=\"hidden\" name=\"price\" value=\"349\" />");               
               $("#coupon-form").replaceWith("<strong>Coupon Accepted!</strong><br />Now, select your product below.").show();
     	return false;
     }
     else if ($("input:first").val().toLowerCase() == "apr10") {
               $("#skupp101").replaceWith("<input id=\"skupp101\" type=\"hidden\" name=\"price\" value=\"99\" />");
               $("#coupon-form").replaceWith("<strong>Coupon Accepted!</strong><br />Now, select your product below.").show();
     	return false;
     }

    
    $("#coupon-nogood").show().fadeOut(5000);
    $("#coupon-form").show();
    return false;
   });

});   