/* <![CDATA[ */
		$(document).ready(function() {

			// hide sub menus
			$('.effect .submenu ul').hide();
			
			// toggle sub menus on hover
			$('.effect .submenu > li')
				.hover(function(e) {
					$(this).children('ul').hoverFlow(e.type, {
						'opacity': 'show'
					});
				}, function(e) {
					$(this).children('ul').hoverFlow(e.type, {
						'opacity': 'hide'
					});
				});
			
			var duration = 1000;

		});
/* ]]> */
