﻿<!--
//-----------------------------------------

function mon(d) {
	var o = d.src;
	return d.src = o.substring(0,o.length-5) + o.substring(o.length-5,o.length-4) + "_.gif";
}
function mout(d) {
	var o = d.src;
	return d.src = o.substring(0,o.length-6) + o.substring(o.length-6,o.length-5) + ".gif";
}
//-------------------------------------=================================JQUERY Documnet=================---------------
$(function(){
	var _f = function(){
		$("#MenuTop dl").each(function(i){
			$(this).mouseover(function(){
				$("#MenuBottom dl").each(function(n){
					if ((i - 1) == n) {
						$(this).show('fast');
					}
					else {
						$(this).hide('fast');
					}
				});
			});
		});
	}
	$("#IndexMenu").hover(_f, function(){
		window.setTimeout(function(){$("#MenuBottom dl").hide('fast');}, 1000);							   
	});
})
//-------------------------------------=================================JQUERY Documnet=================---------------
//-->
