﻿$(function() {
	$(".menu-tab-default").hover(
	function() {
		$(this)
		.addClass('menu-tab-highlight')
		.menu({ 
			content: $(this).find("div.sub-menu").html(), // grab content from this page
			flyOut: true,
			callerOnState: '',
			width: 210,
			showSpeed: 100 
		});
	},
	function() {
		$(this)
		.removeClass('menu-tab-highlight');
	});
	return false;
});
$(function() {
	$(".menu-tab-selected").hover(
	function() {
		$(this).addClass('menu-tab-highselect');
		$(this).menu({ 
			content: $(this).find("div.sub-menu").html(), // grab content from this page
			flyOut: true,
			callerOnState: '',
			width: 210,
			showSpeed: 100 
		});
	},
	function() {
		$(this).removeClass('menu-tab-highselect');
	});
	return false;
});


