// When the DOM is ready
$(function() {
	
	// $.upgradebrowsers();
	
	$("nav li:nth-child(1) a, nav li:nth-child(2) a, nav li:nth-child(3) a, nav li:nth-child(4) a, nav li:nth-child(5) a,.date").append("<span>&nbsp</span>");
		
	$("nav a").hover(function(e) {
		
		$(this)
			// .hoverFlow(e.type, {width: 160 }, 200)
			// .css('overflow', 'visible')
			.find('span')
			.hoverFlow(e.type, { width: 60 }, 100)
		
	}, function(e) {

			$(this)
				// .hoverFlow(e.type, {width: 178 }, 200)
				// .css('overflow', 'visible')
				.find('span')
				.hoverFlow(e.type, { width: 15 }, 200)
		});

})

