/* Blog Link */
jQuery(document).ready(function(){
	// 末端要素を設定
	jQuery('#mb_blog:last-child > #blog a').addClass('last-child');
	
	// 子要素から親要素を取得しておく
	var DMP = jQuery("#blog","#mb_blog").parent();
	
	DMP.each(function(){
		// 隠しメニューを取得
		var MENU = jQuery(">#blog",this);
		jQuery(this).hover(
			function(){
				// MouseOver
				//console.log("fadeIn");
				MENU.stop(true,true).fadeIn();
			},function(){
				// MouseOut
			}
		);
		jQuery(this).hover(
			function(){},
			function(){
				// MouseOut
				//console.log("fadeOut");
				MENU.stop(true,true).fadeOut();
			}
		);
	});
});
