$(function() {
	
	
	$("nav a").hover(function(e) {
		
		$(this)
			.hoverFlow(e.type, {width: 210 }, 250)
			.css('overflow', 'visible')
		
	}, function(e) {
	
		$(this)
			.hoverFlow(e.type, {width: 180 }, 250)
			.css('overflow', 'visible')
	
	});
})

	
	
	
	

	
