// JavaScript Document
$(document).ready(function() {
	// rel external
	$("a[rel='external']").click(function() {
		return !window.open($(this).attr("href"));
	});
	
	//remove padding on last td in row
	$('#mainContent tr').find('td:last').each(function(index) {
		$(this).css("padding-right","0px");		
	});
	
	//remove bottom padding on td in last row
	$('#mainContent table').find('tr:last td').each(function(index) {
		$(this).css("padding-bottom","0px");		
	});
	
	//remove bottom margin on td p in last row
	$('#mainContent table').find('tr:last td').find('p:last').each(function(index) {
		$(this).css("margin-bottom","0px");		
	});
	
	$('#mainContent tr').find('td.contentBlock:last').each(function(index) {
		$(this).css("border-right","none");		
	});
});



