$(document).ready(function() {
	$("#submenu li a").each(function() {
		var text = $(this).text();
		$(this).empty().append("<span>"+text+"</span>");
	});
	
	$(".page-entry p:first").remove();
	
	if($(".cf-ol").length > 0) {
		$(".cf-ol li").append("<br class='clear' />");
	}
	
	$("#searchsubmit").attr("value","");
	
	
});