$(document).ready(function() {
	
	$('h1, h2').sifr({
		font: '/wp-content/themes/susanwall/sansumi',
		textAlign: 'left',
		color: '#444'
	});
	
	
	//highlight_nav();
	
});  


function highlight_nav() {
  
	// Get current page name	var thispage = document.location.href;	thispage = thispage.substr(thispage.indexOf("/") + 1);                  // See if current page matches any link hrefs    $("#nav ul li a").each(function(){            var current_href = $(this).attr("href");                                                                                if(thispage.match(current_href) != null) {                                $(this).addClass("selected");        }        });  
}