$(document).ready(function(){
	
	// Adding a class of "first" to selected list items
	
	$("ul#navigation_ter li:first-child").addClass("first");
	$("div#siteinfo ul li:first-child").addClass("first");
	
	// // Tertiary Navigation
	// 
	// $("ul#navigation_ter h4").addClass("closed");
	// $("ul#navigation_ter h4").click(function () {
	// 	$(this).next().slideToggle("fast");
	// 	$(this).toggleClass("closed");
	// });
	
	// Tertiary Navigation
	$("ul#navigation_ter ul").hide();
	$("ul li a.on").each(function() {
		$(this).parent('li').each(function() {
			
			$(this).children('ul').each(function() {

				$(this).show();
			});
			$(this).parents('ul').each(function() {
				
				$(this).parents('li').each(function() {
					$(this).addClass("cur");
				});
				
				$(this).show();


			});

		});				
	});
	
	// Print Page

	if (document.getElementById("page_options")) {
		var page_options = $("ul#page_options");
		$(page_options).append("<li id=\"print\"><a href=\"javascript:window.print()\">Print</a></li>");
	};
    
});