	jQuery(function( $ ){
	
	  $(document).ready(function() {
	        $("div#alum_list p").hide();
			var myFile = document.location.toString();
			if (myFile.match('#')) { // the URL contains an anchor
			  // click the navigation item corresponding to the anchor
	  		var elid = myFile.split('#t_')[1];
//			var temp="ul#alum_name_list li#".elid;
			$('ul#alum_name_list li').css({fontWeight:"normal","background-image":"url(/css/images/starryyellowarrow_low.gif)"});
			$('ul#alum_name_list li a').css({color:"#181848","text-decoration":"underline"});
			//change format of active link
			$("ul#alum_name_list li a#"+elid+"").parent().css({fontWeight:"bold","background-image":"url(/css/images/starryyellowarrow_blue.gif)"});
			$("ul#alum_name_list li a#"+elid+"").css({color:"black","text-decoration":"none","background-color":"white","cursor":"text"});
	        //hide any previous output
	        $("div#alum_list p").hide();
			//show my output
	        $("div#alum_list p#t_" + elid + "").fadeIn("slow");
			}
		});
	
	$('ul#alum_name_list li').click(function(e){
			e.preventDefault();
			e.target.blur();
		});

	
	$("ul#alum_name_list li a").click(function(){
	        var elid = $(this).attr('id');
//			alert (elid);
			//reset appearance
			$('ul#alum_name_list li').css({fontWeight:"normal","background-image":"url(/css/images/starryyellowarrow_low.gif)"});
			$('ul#alum_name_list li a').css({color:"#181848","text-decoration":"underline"});
			//change format of active link
			$(this).parent().css({fontWeight:"bold","background-image":"url(/css/images/starryyellowarrow_blue.gif)"});
			$(this).css({color:"black","text-decoration":"none","background-color":"white","cursor":"text"});
	        //hide any previous output
	        $("div#alum_list p").hide();
			//show my output
	        $("div#alum_list p#t_" + elid + "").fadeIn("slow");
	});

});
	
	
	