$(function() {
	$("td").removeAttr("nowrap");

	$(".subnavblock, .footlinksblock").each( function() {
		$(this).children("li:last").addClass("last");
		$(this).children("li:first").addClass("first");
	});
		
		$('#topnav ul > li:first-child').addClass('first_li');
		$('#topnav ul > li:last-child').addClass('last_li');

});