// When the DOM is ready
$(function() {
	
	$("nav a").hover(function(e) {
		
		$(this)
			.hoverFlow(e.type, { right: 15 }, 200)
			.css('overflow', 'visible')
	
	}, function(e) {
		
		$(this)
			.hoverFlow(e.type, { right: 0 }, 200)
			.css('overflow', 'visible')
	});
	
})
