$('html').addClass('js');

Cufon.replace('h2:not(.image-title, .blog_entry .entry-content h2), .blog_entry h1, span.replace, .search_results h1, .four-oh-four h1, .contact h1', {
	hover: true
});

$(function() {
    
    $('#bio_trigger').click(function(){
        if (this.text() == 'Read More') {
            this.text('Collapse');
        } else {
            this.text('Read More');
        }
       $('.home .feature .extended').slideToggle("slow");
       return false;  
    });
	
	//This turns items into clickable link blocks
	
	$(".feedbox .hfeed li, .categories_box li").hover(
			function () {
				$(this).addClass("hover");
			}, 
			function () {
				$(this).removeClass("hover");
			})
		.click(function(){
			window.location=$(this).find("a").attr("href"); return false;
		});
		
});

