// Welcome to your jquery.base file ... place awesome jquery stuff here to help spruce up / fix / whatever your site. A link to this file has already been placed in each masterpage

jQuery(function() {
	jQuery("td").removeAttr("nowrap");
	
	// IE lte 6-specific
	/*if($.browser.msie && $.browser.version<7) {
		// stuff here
	};*/
	
	// add first and last classes to various elements
	jQuery(".subnavblock, .footlinksblock").each( function() {
		jQuery(this).children("li:last").addClass("last");
		jQuery(this).children("li:first").addClass("first");
	});
		
		$('#topnav_center ul li').hover( 
			function() {
				$(this).addClass('topnav_hover');
			},
			function(){
		
				$(this).removeClass('topnav_hover');
			}
		);

});
