$(function(){
	$('#header').after($('<div id="topicsList"></div>'));
	$('#topicsList').load('/js/topic.php','', function() {
		$(this).append($('<a class="sns rss" href="/rss.php" title="RSS">RSS</a>'));
		$(this).append($('<a class="sns tw" href="http://twitter.com/#!/phileweb" title="twitter">twitter</a>'));
		$(this).append($('<a class="sns fb" href="http://www.facebook.com/phileweb" title="facebook">facebook</a>'));
		$(this).append($('<a class="sns mail" href="/information/mailservice/" title="mail">mail</a>'));
	});
	$('#main').after($('<div id="sitemapWrapper" class="clear"></div>'));
	$('#sitemapWrapper').load('/js/sitemap.shtml');
	$('#main').after($('<div id="footerMagazine" class="clear"></div>'));
	$('#footerMagazine').load('/js/books.php');
	if (!$('body').hasClass('home')) {
		$('#main').after($('<div id="newsArticle" class="clear"></div>'));
		$('#newsArticle').load('/js/news.php');
	}
	if ($('body').hasClass('havesp')) {
		cookies = document.cookie.split("; ");
		for(i = 0; cookies[i]; i++) {
			if (cookies[i] == 'spoff=on') {
				$('#footer').after($('<div id="spnavi"><a href="#" onclick="spoff()">スマートフォン版へ</a></div>'));
			}
		}
	}
});

function spoff() {
	document.cookie = "spoff=off;path=/";
	newurl = window.location.href;
	newurl = newurl.replace(window.location.host + '/', window.location.host + '/sp/');
	window.location.href = newurl;
}

GS_googleAddAdSenseService("ca-pub-2705624424000657");
GS_googleEnableAllServices();

