﻿$(function(){
$("#menu_index .demo").hover(function() {
	var i = $("#menu_index .demo").index(this);
	$(this).data("index",i);
	$("#menu_index .submenu").each(function(z) {
		if (z==i)
		{
			$(this).show();
		}else{
			$(this).hide();
		}
	});
},function(){
	$("#menu_index .submenu").eq($(this).data("index")).hide();
});
$("#menu_index .submenu").hover(function() { $(this).show() }, function() { $(this).hide() });


})

