// 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
	};*/
	
	// add first and last classes to various elements
	/*$("#footer ul, .subnavblock, .footlinksblock").each( function() {
		$(this).children("li:last").addClass("li_last");
		$(this).children("li:first").addClass("li_first");
	});
	$("#content #maintop, #content #mainbot, #content .left, #content .right, #rm").each( function() {
		$(this).children(".skin:last").addClass("last");
		//$(this).children(".skin:first").addClass("first");
	});*/
});