// JavaScript Document

$(document).ready(function(){  
						   
	$(".menu a").hover(function() {
		$(this).next("em").show();
	}, function() {
		$(this).next("em").hide();
	});
	
	$("em.sub01").hover(function() {
		$("em.sub01").show();
	}, function() {
		$(this).hide();
	});
	
	$("em.sub02").hover(function() {
		$("em.sub02").show();
	}, function() {
		$(this).hide();
	});
	
	$("em.sub03").hover(function() {
		$("em.sub03").show();
	}, function() {
		$(this).hide();
	});
	
	$("em.sub04").hover(function() {
		$("em.sub04").show();
	}, function() {
		$(this).hide();
	});
			
	
	   

});