$(function() {
	
	$('#main-nav #blog a').css('border-right','0px'); // no border on last nav
	
	$('p:last-child').css('margin','0px'); // no bottom margin on last paragraph
	
	$('#welcome').after('<div></div>'); // adds box after welcome div... ie6 hack for absolute positioned element disappearance
	
	$('.upcoming-events ul li:gt(8)').remove(); // limits upcoming events on home page. Can't limit in the php function.
	$('.upcoming-events ul li:last-child strong').remove();	 //removes last element if in a <strong> tag
	
	//$('.about-page p').after('<div class="clear"></div>');
	//$('.about-page h2').before('<div class="clear"></div>'); //adds clear float before H3's
	
});
