// BEGIN DOM
$(document).ready(function()
{
	
	// Any link with the rel of backlink will go back history -1
	$('a[rel="backlink"]').click( function() {
		parent.history.back(-1);		
        return false;
    });
	$('a[href^="http://"]').not('[href*="mynameisdamien.com"]').addClass('external').attr('target', '_blank');
	
	// Open pdf links in new windows
	$('a[href$=".pdf"]').addClass('pdf').attr('target', '_blank');
	
});//end document.ready