// Welcome to your jquery.base file ... place awesome jquery stuff here to help spruce up / fix / whatever your site. A link to this file has already been placed in each masterpage
$(function(){
	$("td").removeAttr("nowrap");
	// IE lte 6-specific
	/*if($.browser.msie && $.browser.version<7) {
		// stuff here
	};*/
	$("#content #maintop, #content #mainbot, #content .left, #content .right, #rm").each( function() {
		$(this).children(".skin:last").addClass("last");
	});
	
	// add first and last classes to various elements
	$(".subnavblock, .footlinksblock, #topnav, #topnav ul").each( function() {
		$(this).children("li:last").addClass("last");
		$(this).children("li:first").addClass("first");
	});
});