$(function(){
//フラットハイト

$('ul.top_about li').flatHeights();
$('div#footerlink ul').flatHeights();

//スクロールするまで画像を読まない
$(".top_contlist a img,#top_main_continer img").lazyload({
		placeholder: "http://nenga-kazoku.com/common/images/blank.gif",
		effect     : "fadeIn",
		event      : "scroll"
	});


//人気ベスト5
	$(".best5nenga a img ").hover(
		function () {
		  $(this).fadeTo(150, 0.5);
	},
		function(){
			$(this).fadeTo(250,1)
			});


// ソーシャルブックマーク制御

	$("#social a").attr("target", "_blank");

	var sns, real_url, urlList = [];
	var page_title = $("title").text();
	for(i=0; i<$("#social a").length; i++){
		urlList = $("#social a").eq(i).attr("href");
		real_url = location.href;
		$("#social a").eq(i).attr("href" , urlList.replace(L_HOME, real_url));
	};
});

$(function(){
 $('a[href^=http://www.youtube.com/watch]').lightpop({overlayBgColor:'#FFF',contentBorder:'1px solid silver'});
});


