// JavaScript Document
$(document).ready(function() {
						   
//check which page is loaded and set the menu
page_highlight();

//controls the menu display
$("span.menu").hover(
	function () { 
		$("#sub_menu_box").html('').html($("#menu_"+$(this).attr('id')).html());
		$(this).stopTime('controlled');		
     },  
    function () { 
   		$(this).oneTime(6000, 'controlled', function() {page_highlight();}, true);
    });

$('#sub_menu_box').hover(function(){$(this).stopTime('controlled');} , 
	function(){$(this).oneTime(6000, 'controlled', function() {page_highlight();}, true);
});

//check which page is loaded and set the menu
function page_highlight()
{
	var todo = $('#todo').val();
	$("span[id='"+todo+"']").addClass('tmp-menu-hover');
	$("#sub_menu_box").html('').html($("#menu_"+todo).html());
}

/*===============================================*/
});
