$(function(){
	$('#globalNav li.home').remove();
});


$(function(){
	if ($.browser.msie || $.browser.mozilla) {
		var basisHeight  = Math.floor(($('#basis').height()));
		var paragraphHeight  = Math.floor(($('#basis').height()) - 75);
		$("#latestInsistence,#latestReport")
			.css({
				height: paragraphHeight
		 	});
		}
	else if ($('img').length) {
		$('img').load(function() {
		var basisHeight  = Math.floor(($('#basis').height()));
		var paragraphHeight  = Math.floor(($('#basis').height()) - 75);
		$("#latestInsistence,#latestReport")
			.css({
				height: paragraphHeight
		 	});
		});
	}
	else {
		var basisHeight  = Math.floor(($('#basis').height()));
		var paragraphHeight  = Math.floor(($('#basis').height()) - 75);
		$("#latestInsistence,#latestReport")
			.css({
				height: paragraphHeight
		 	});
		}
});
