$(document).ready(function() {
	
	$("a[rel=external]").click(function() {
		this.target = "_blank";
	});

	
	$("table#financial_table > tbody > tr > td:nth-child(2)").addClass("current_year");	
	$("table#financial_table > tbody > tr > td:nth-child(3)").addClass("last_year");
	
	$('#pagination').prepend('<a id="print_page" href="#">Print this page</a>');
	$('#print_page').click(function() {
		window.print();
		return false;
	});

	
});
