/* This displays the inpage nav, provides the page slide feature for the enginner profiles on the drop down */ $(document).ready(function () { $("#navForm").removeClass("hidden") $("#navSelect").css("display","block") $('#processNav').change(function() { var optionSelect = document.getElementById('processNav').value; $("#processContainer").load("/design/processes/process" + optionSelect + ".asp"); //document.getElementById('navForm').reset(); }) });