$(document).ready(function() { // ************************************************* // This hides all panels that do not need to be open $("#news_archive").hide(); // ****************************************************** // This toggles open and closed the CVV information panel $("a#news_archive_toggle").click(function() { $("#news_archive").toggle("fast"); $("a#news_archive_toggle").hide(); }); // ******************************************************** // This creates a mask so numbers are formatted correctly.. // gift_certificate_order.php $("input:text[@name=alternate_date]").mask("99/99/99"); $("input:text[@name=preferred_date]").mask("99/99/99"); });