/// <summary>
/// Handle our tab selection and drop down changes. For specific models/derivatives.
/// </summary>
$(document).ready(function() { 	
	/********************************************************************************/
    //Toggle the tab state of the technical details.
    $("div#derivativeDetailsPanel_Menu > div.displayStackMenuButton > h4 > a").click(
		function () {
			switchTabState($(this), "derivativeDetailsPanel");
			return false;
		}
    );
    /********************************************************************************/
  
	/********************************************************************************/
    //Submit our Model/Derivative change form.
    $("form#modelSelection select").change(
		function() {
			$("form#modelSelection").submit();
		}
    );
    /********************************************************************************/
});
