$(document).ready(function(){
	$('#gNavi li.navi').hover(
		function() {
			$(this).children('ul').slideDown(300);
		},
		function() {
			$(this).children('ul').slideUp(300);
		}
	);
});

// テキストフィールドに文言表示
function ShowFormGuideImage(obj) {
   // 案内画像を表示
   if( obj.value == '' ) {
      obj.style.backgroundImage='url(searchbg.gif)';
   }
}
function HideFormGuideImage(obj) {
   // 案内画像を消す
   obj.style.backgroundImage = '';
}


