          $().ready(function() {
                        var dialog1 = $('#opendialog1');
                        var dialog2 = $('#opendialog2');
                        var dialog3 = $('#opendialog3');
                        var dialog4 = $('#opendialog4');
                        var dialog5 = $('#opendialog5');
                        $('div.jqmWindow').jqm();

                $(dialog1).click(function() {
                        $("#target").html("<input type=\"hidden\" name=\"Product\" value=\"Health Savings\"><input type=\"hidden\" name=\"total\" value=\"$11.99\">");
                        return false;
                });

                $(dialog2).click(function() {
                        $("#target").html("<input type=\"hidden\" name=\"Product\" value=\"Personal Safety\"><input type=\"hidden\" name=\"total\" value=\"$8.99\">");
                        return false;
                });

                $(dialog3).click(function() {
                        $("#target").html("<input type=\"hidden\" name=\"Product\" value=\"Custom\">");
                        return false;
                });

                $(dialog4).click(function() {
                        $("#target").html("<input type=\"hidden\" name=\"Product\" value=\"Health Savings and Personal Safety\"><input type=\"hidden\" name=\"total\" value=\"$16.99\">");
                        return false;
                });

                $(dialog5).click(function() {
                        $("#target").html("<input type=\"hidden\" name=\"Product\" value=\"Dental Only\"><input type=\"hidden\" name=\"total\" value=\"$4.99\">");
                        return false;
                });


           });






                function validate() {
                        jQuery.noConflict(); var $j = jQuery;
                        $j(document).ready(function() {
                                $j("#TestForm").validationAideEnable(null, {showInlineMessages:false});
                        });
                }


