jQuery(document).ready(function() {
	jQuery("#suckerfishnav")
		.find("ul li:last-child")
			.css("border", "none")
		.end()
		.children("li")
			.find("ul")
				.prepend("<li class='rounded-top'></li>")
			.end()
		.end()
		.find("li ul li ul li.rounded-top").remove()
	.end();
});
