jQuery(document).ready(function() {
    // external links
    jQuery("a[rel='no-follow']").click(function() {
        jQuery(this).attr('target', '_blank');
    });
	
	// Add end class to various lists
    jQuery('ul li:last-child, ol li:last-child, div.post:last').addClass('end');
	
	// flickr colors
	jQuery('h2','#flickr').html('Photos on <span class="flickrblue">flick</span><span class="flickrpink">r</span>');
	
	// external links
	jQuery("a[rel='external']").click(function() {
        jQuery(this).attr('target', '_blank');
    });
	
});