function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


	$(document).ready(function() {
	
	// choose text for the show/hide link
	var showText="View Files";
	var hideText="Hide Files";
	var showAll="View All Files";
	var hideAll="Hide All Files";
	
	$('.dynamic_content').hide();
	
	
	$("a.toggle").click(function(){
			
			
			if ($(this).text()==showText) {
				$(this).text(hideText);
				$(this).parent().prev(".dynamic_content").slideDown("slow");
			}
			else {
				$(this).text(showText);
				$(this).parent().prev(".dynamic_content").slideUp("slow");
			}
			
		});
		
	$("a.toggleAll").click(function(){
		
		
		if ($(this).text()==showAll) {
			$(this).text(hideAll);
			$("a.toggle").text(hideText);
			$(".dynamic_content").slideDown("slow");
			}
		else {
			$(this).text(showAll);
			$("a.toggle").text(showText);
			$(".dynamic_content").slideUp("slow");
		}
	});
		
});
