// JavaScript Document

$(document).ready(function(){
	borderRemove();
});

function borderRemove() {
	$('.panel table tr:first-child td').css('padding-top','5px');
	$('.panel table tr:last-child td').css('border-bottom','none');
	$('.panel p:last-child').css('border-bottom','none');
	$('.simple p:last-child').css('padding-bottom','0px');
}
