$(function(){
	$.getScript('http://www.enernoc.com/js/jquery.url.js',function(){
		var $source = $.url.attr("source") + '&print=1';
		$('body#release').prepend('<a href="/press/press-releases.php" target="_parent" class="press-back">&lt;&lt; View all Press Releases</a>');
		$('body#release').prepend('<a href="'+ $source +'" target="_parent" class="print-this clearfix">Print &gt;&gt;</a>');
		if ($.url.param("print") == '1') {
			window.print();
		}
	});
	// Opem Links in Parent Window
	$('a').attr('target','_parent');
});