	// javascript for program archive nav //
	var $jq = jQuery.noConflict();
	
	$jq(function() {
		var today = new Date();		
		var archive_year = document.location.pathname.match(/index([0-9]+)?\.shtml/)[1];
		if(archive_year == '' || archive_year == undefined) {archive_year = today.getFullYear();}		
		
		// var current_page_option_exp = "select#archiveYearSelect option:contains("+archive_year+")";
		// $jq(current_page_option_exp).addClass("current").attr("selected", "selected").html($jq('select#archiveYearSelect option#browse_option').remove().html());
		
		// $jq('select#archiveYearSelect').change(function () {
		// 	window.location.href = $jq("select#archiveYearSelect option:selected").val();
		// });
		

		$jq('ul.sf-menu').superfish({dropShadows:false});
		$jq('ul.sf-menu a#browse_link').click(function(event){
			event.preventDefault();
			
		});
		
		var current_bottom_link_exp = "#programArchiveBottomNav a:contains("+archive_year+")";
		$jq(current_bottom_link_exp).removeAttr("href");
		
	});