			$(function(){
				$('#gn01').hover(
					function(){
						$('#gn01_sub').stop(true, true).fadeIn();
					},
					function(){
						$('#gn01_sub').fadeOut();
					}
				);
				$('#gn01_sub li').hover(
					function(){
						$(this).css('opacity', '0.9');
					},
					function(){
						$(this).css('opacity', '0.3');
					}
				);
				$('#gn02').hover(
					function(){
						$('#gn02_sub').stop(true, true).fadeIn();
					},
					function(){
						$('#gn02_sub').fadeOut();
					}
				);
				$('#gn02_sub li').hover(
					function(){
						$(this).css('opacity', '0.9');
					},
					function(){
						$(this).css('opacity', '0.3');
					}
				);
				$('#gn03').hover(
					function(){
						$('#gn03_sub').stop(true, true).fadeIn();
					},
					function(){
						$('#gn03_sub').fadeOut();
					}
				);
				$('#gn03_sub li').hover(
					function(){
						$(this).css('opacity', '0.9');
					},
					function(){
						$(this).css('opacity', '0.3');
					}
				);
				$('#gn04').hover(
					function(){
						$('#gn04_sub').stop(true, true).fadeIn();
					},
					function(){
						$('#gn04_sub').fadeOut();
					}
				);
				$('#gn04_sub li').hover(
					function(){
						$(this).css('opacity', '0.9');
					},
					function(){
						$(this).css('opacity', '0.3');
					}
				);
				$('.hover_replace').hover(
					function(){
						$(this).attr('src', $(this).attr('src').replace('.gif', '_on.gif'));
					},
					function(){
						$(this).attr('src', $(this).attr('src').replace('_on.gif', '.gif'));
					}
				);
			});

