// 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");
	
	// dropdown menu
	$("ul#topnav").superfish();
	
	$(".skin").each( function() {
		$(this).children(".contentblock").children(".skin:last").addClass("last");
	});
	
});