/* <![CDATA[ */
		$(document).ready(function() {
			/* horizontal menu */
			
			// hide sub menus
			$('#tabs ul ul').hide();
			
			// toggle sub menus on hover
			$('#tabs ul > li')
				.hover(function(e) {
					$(this).children('ul').hoverFlow(e.type, {
						'height': 'show',
						'marginTop': 'show',
						'marginBottom': 'show',
						'paddingTop': 'show',
						'paddingBottom': 'show' 
					});
				}, function(e) {
					$(this).children('ul').hoverFlow(e.type, {
						'height': 'hide',
						'marginTop': 'hide',
						'marginBottom': 'hide',
						'paddingTop': 'hide',
						'paddingBottom': 'hide' 
					});
				});
			
			});
	/* ]]> */


