//fading mouseovers
$(document).ready(function(){
	$('#nav li').removeClass('noJS')  //replace CSS class with script
	$('#nav li a').wrapInner('<span>')
	$('#nav li a span').css('opacity', 0)  //must hide the rollovers initially
	$("#nav li a").hover(
		function () {
			$(this).children("span").stop().animate({'opacity': '1'}, 300)
		},
		function () {
			$(this).children("span").stop().animate({'opacity': '0'}, 300)
		}
	)
})
