/**
 * @author Johnm
 * @edited by Nelson
 */

	Cufon.replace('h2',{fontFamily: "Eurostile LT Condensed"});
	Cufon.replace('h3',{fontFamily: "Eurostile LT Condensed"});
	Cufon.replace('h4',{fontFamily: "Eurostile LT Condensed"});
	
	$(function(){
		
		// Selects the current link in the subnavigation.
		pathArray = window.location.pathname.split( '/' );
		
		$(".current_nav li").each(function(){
			$(this).removeClass('sub_active');
			if($(this).attr("class") == pathArray[2])
			{
				$(this).addClass('sub_active');
			}
		});
		
	});
