//****************************************************************
//****************************************************************
//	DEFENSIVE DRIVER ON-LINE
//	COPYRIGHT 2011, Vertex Software
//****************************************************************
//****************************************************************

//===========================================================
// InitializeDDONational
//===========================================================
function InitializeDDONational( ) {
	try {
		// no longer need per customer
		return;
		$( "#goToState" ).click( function() { 
			$( "select[name=selectState]" ).each( function() {
				if (this.selectedIndex == 0) {
					alert( "Please select a state from the menu to the left." );
					return;
					} 
				document.location.href = "/" + this.value;
				} );
			} );
		}
	catch (error) {
		alert( "InitializeDDONational: " + error.description  );
		}
	}


//-----------------------------------------------------------
// DisplayCourseDetails
//-----------------------------------------------------------
function DisplayCourseDetails( ) {
	try {
		if (!document.location.pathname.match( /\/course-details\/([^\/]+)(.*)/g )) {
			$( "DIV[id^=CourseType_]" ).show();
			}
		else {
			var courseType = RegExp.$1;
			var login = RegExp.$2;
			$( "#CourseType_"  + courseType ).show();
			if (login.match(/login/)) {
				$("A.btn_course_details_reg").hide(); 
				$("A.btn_student_login").hide();
				$("A.btn_course_details_login").text("Returning Student Login »");
				}
			}
		}
	catch (error) {
		alert( "DisplayCourseDetails: " + error.description, false, true );
		}
	}



$( function() { InitializeDDONational(); } );
