// JavaScript Document
$(document).ready(function(){
	$("ul#topnav li").hover(function() {
	 //メインメニュー（#topnavi li）にマウスが乗った時
		$(this).css({ 'background' : '#1376c9'}); //その要素の背景色を変える
		$(this).find("span").show();  //サブメニューを表示
		} , function() {
		$(this).css({ 'background' : 'none'}); //背景色を戻す
		$(this).find("span").hide(); //サブメニュー隠す
	});
});

