﻿$(function() {
	$(".menu-tab-default").hover(
	function() {
		$(this)
		.addClass('menu-tab-highlight');
		if($(this).find("div.sub-menu").html()){
    		$(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-highlight');
	});
	return false;
});
$(function() {
	$(".menu-tab-selected").hover(
	function() {
		$(this).addClass('menu-tab-highselect');
		if($(this).find("div.sub-menu").html()){
    		$(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;
});



