$(document).ready(function() {

	$('ul#menu a').hover(
	
	function(e) {
		
		$(this).hoverFlow(e.type, {
			fontSize: '19px'
		}, {duration: 400, easing: 'easeout'});
	},
	function(e) {

		$(this).hoverFlow(e.type, {
			fontSize: '15px'
		},  { duration: 200, easing: 'easein'});
	});

});