$(function() {
	$("td").removeAttr("nowrap");
	
  
	// add first and last classes to various elements
	$(".subnavblock, .footlinksblock").each( function() {
		$(this).children("li:last").addClass("last");
		$(this).children("li:first").addClass("first");
	});
		
		$('#topnav li:last-child').addClass('last');
		$('#topnav li').hover( 
			function() {
				$(this).addClass('topnav_hover');
			},
			function(){
		
				$(this).removeClass('topnav_hover');
			}
		);

});
