$(document).ready( function() {


       $( "#aboutApt" ).click( function() {
           var s =  "<p style = 'margin-bottom: 5px;'>Due to the sophisticated and challenging nature of the IMACS curriculum, students must pass an online aptitude test before being accepted into any IMACS course." +
            " The style of the aptitude test is similar to our university level courses. It requires students to read rigorous material and answer challenging questions.</p>" +
            "<p style = 'margin-bottom: 5px;'>On the other hand, the material covered on the aptitude test has <i>nothing</i> to do with the topics covered in our courses. Also, the aptitude test does not involve material covered in typical high school level courses (including AP courses). So, there is no studying to do for the aptitude test.</p>" +
            "<p style = 'margin-bottom: 5px;'>The aptitude test can be taken at your convenience with no fee and no obligation. There's nothing to download. All you need is:</p>" +
            "<ul style = 'margin: 0 25px 20px;'>" +
            "<li style='list-style: disc outside none;'><p style='margin: 2px;'>internet access;</p></li>" +
            "<li style='list-style: disc outside none;'><p style='margin: 2px;'>paper and pencil;</p></li>" +
            "<li style='list-style: disc outside none;'><p style='margin: 2px;'>one hour of uninterrupted time when you can give the test your best effort;</p></li>" +
            "<li style='list-style: disc outside none;'><p style='margin: 2px;'>a username and password for the aptitude test, which you can obtain for free, without any commitment of any kind. Simply fill out and submit the form on this web page.</p></li>" +
            "</ul>";

       $( "<div id = 'aptDialog' />" )
            .appendTo( $( "#content2" ) )
            .append( s )
            .dialog(
            {
                modal: true ,
                title: "About The Aptitude Test" ,
                width: "740px" ,
                buttons:
                    {
                        Close: function() {$(this).dialog( 'close' );}
                    } ,
                close: function() {$(this).remove();}

            } );

            return false;
        } );
} );
    
