// Powered by jQuery! :D
$(document).ready(function(){    

    // H1s are links to root.
    $('h1').click(function() {
    	window.location.href = "/";
    });
    
    // Make rel=external open in new window.
    $('a[rel="external"]').click(function() {
    	window.open($(this).attr('href'));
    	return false;
    });
});