// acocordion setting

	$(document).ready(function(){
		$("#accordion").accordion({
		selectedClass: "selected",
		alwaysOpen: false,
		animated: "slide",
		event: "mouseover",
		header: "a.sitename",
		autoheight: true
	});
	});

// external link 

	$(document).ready( function () {
	$('.entry a[@href^="http"]').not('[@href^="http://www.seotaisaku.com/"]').click(function(){
	window.open(this.href, '');
	return false;
	});
	$('.entry a[@href^="http"]').not('[@href^="http://www.seotaisaku.com/"]').addClass("exLink");
});

