


//===========================================================
// InitializeCategoryList
//===========================================================
function InitializeCategoryList( ) {
	try {
		var linkID = document.location.href.match( /\&linkID=(Link[0-9]+)/g ) ? RegExp.$1 : "";
		var category;
		if (linkID) {
			category = $( "A#" + linkID ).parent().parent();
			}
		else {
			var videoLink = $( "a:contains('Bike Safety'):first" );
			if (videoLink.length == 0) return; 
			var videoItem = videoLink.parent();
			category = videoItem.parent();
			document.location.href = videoLink[0].href;
			}
		if (category.length == 0) {
			category = $( ".videoItems:first" ).parent();
			}
		category.show();
		category.prev().addClass("opened");
		$( ".videoCategory" ).click( function() {
			$( ".videoCategory" ).removeClass("opened");
			$(this).addClass("opened");
			$( ".videoItems" ).hide();
			$(this).next().toggle();
			} );
		}
	catch (error) {
		alert( "InitializeCategoryList: " + error.description  );
		}
	}



$( function() { InitializeCategoryList() } );
