jQuery.noConflict();
jQuery(document).ready(function($) {
	var voc = '<div id="vocational-nursing"><ul>\
        <li>15 Month Program</li>\
        <li>Classes are Monday thru Friday - scheduled by the VN Dept.</li>\
        <li>Prospective students are required to be one of the following: \
    	    <ol>\
    	    	<li>Certified Nurse Assistant (CNA)</li>\
    	    	<li>Registered Medical Assistant(RMA)</li>\
    	    	<li>National Certified Medical Assistant(NCMA)</li>\
    	    	<li>Emergency Medical Tech.(EMT)</li>\
    	    	<li>Surgical Tech</li>\
    	    	<li>Patient Care Tech</li>\
    	    </ol>\
        </li>\
        <li>License must be active.</li>\
        <li>Prospective students must have at least 3 months or more work experience in whichever field you are certified in.</li>\
        <li>The prospective students are required to:\
            <ol>\
                <li>Take an entrance exam and pass it with 55% or higher. \
                    <ol>\
                        <li>Cost is $50 each.</li>\
                        <li>Consist of: English, Math, Science, and Reading Comprehension</li>\
                        <li>Study guide for exam cost is $55 cash.</li>\
                    </ol>\
                 </li>\
                <li>A background check and fingerprinting are required.</li>\
                 <li>Interviews: \
                    <ol>\
                        <li>Preliminary interview and</li>\
                        <li>An interview by the VN committee</li>\
                      </ol>\
                </li>\
              </ol>\
         </li>\
        <li>Once a prospective student is accepted into the VN program: \
         <ol>\
            <li>Student will meet the Financial Aid Department</li>\
             <li>Student is required to deposit $2,000.00 as 1st payment towards tuition</li>\
              <li>Student is required to provide up to date immunization record, TB test, Hepatitis B Series, and Flu Shot</li>\
         </ol>\
        </li>\
    </ul></div>';

	$('body').on('change', '.interested_in div select', function(event) {
		if($(this).val() == 5) {
			$('<div id="vocational-nursing"></div>').html(voc)
			.dialog({
				title: 'Vocational Nursing Requirements',
				width: 700,
			});
		}
	});
});
