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

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

});
