(function ($){
			$(document).ready(function(){
				
				$('div#goEventArea ul#Gmenu01').find('.parent').each(function(){
					$(this).hover(
						function(){
							$(this).find('ul').fadeIn();
						},
						function(){
							$(this).find('ul').fadeOut();
						}
					);
				});
				$('div#goPlayArea ul#Gmenu02').find('.parent').each(function(){
					$(this).hover(
						function(){
							$(this).find('ul').fadeIn();
						},
						function(){
							$(this).find('ul').fadeOut();
						}
					);
				});
			});
		})(jQuery);
