$(function() {
	//マウスオーバー画像を配置
	$("#top_g_menu_info").css('background', 'url(images/top/m_l_info_on.gif) no-repeat 0px 0px');
	$("#top_g_menu_takuya-blog").css('background', 'url(images/top/m_l_takuya-blog_on.gif) no-repeat 0px 0px');
	$("#top_g_menu_nsw-blog").css('background', 'url(images/top/m_l_nsw-blog_on.gif) no-repeat 0px 0px');
	$("#top_g_menu_movie").css('background', 'url(images/top/m_l_movie_on.gif) no-repeat 0px 0px');
	$("#top_g_menu_radio").css('background', 'url(images/top/m_l_radio_on.gif) no-repeat 0px 0px');
	$("#top_g_menu_special").css('background', 'url(images/top/m_l_special_on.gif) no-repeat 0px 0px');
	$("#top_g_menu_goods").css('background', 'url(images/top/m_l_goods_on.gif) no-repeat 0px 0px');
	$("#top_g_menu_wallpaper").css('background', 'url(images/top/m_l_wallpaper_on.gif) no-repeat 0px 0px');
	$("#top_g_menu_library").css('background', 'url(images/top/m_l_library_on.gif) no-repeat 0px 0px');
	$("#join").css('background', 'url(images/top/btn_join_on.gif) no-repeat 0px 0px');
	$("#login").css('background', 'url(images/top/btn_login_on.gif) no-repeat 0px 0px');
	//アクション
	$('#top_g_menu')
	.find('img').hover(
		function(){
			$(this).stop().animate({'opacity' : '0'}, 250);
		},
		function(){
			$(this).stop().animate({'opacity' : '1'}, 1000);
		}
	);
	
		$('#login_box')
	.find('img').hover(
		function(){
			$(this).stop().animate({'opacity' : '0'}, 250);
		},
		function(){
			$(this).stop().animate({'opacity' : '1'}, 1000);
		}
	);
})

