//ロールオーバー
$(document).ready(RollOverImages);
function RollOverImages() {
	var image_cache = new Object();
	$("img.swap").each(function(i) {
		var imgsrc = this.src;
		var dot = this.src.lastIndexOf('.');
		var imgsrc_on = this.src.substr(0, dot) + '_on' + this.src.substr(dot, 4);
		image_cache[this.src] = new Image();
		image_cache[this.src].src = imgsrc_on;
		$(this).hover(
			function() { this.src = imgsrc_on; },
			function() { this.src = imgsrc; });
	});
}

//外部リンクは別枠で開く
$(document).ready(function(){		
	$('a[@href^="http://"]').not('[@href^="http://www.5-wakagaeru.com"]').not('[@href^="http://118.82.91.167"]').click(function(){
		window.open(this.href, '_blank');
		return false;
	});
});

//文字サイズコントロール クッキー読み込み
if($.cookie('bonheur') == null || $.cookie('bonheur') == "font-m") {
$(document).ready(function(){
	$("body").removeAttr("class");
	$("body").addClass("font-m");//デフォルトのサイズ
	$("#wrap").css("font-size","100%"); 
	$.cookie('bonheur','font-m',{ expires: 30,path:'/' }); //クッキーを30日間保存
	});
}else{
$(document).ready(function(){
	bonheur = $.cookie('bonheur');
	$("body").removeAttr("class");
	$("body").addClass("font-l");//１サイズ大きくした場合のサイズ
	$("#wrap").css("font-size","120%");
	$.cookie('bonheur','font-l',{ expires: 30,path:'/' }); //クッキーを30日間保存
	});
}

//文字サイズコントロール
$(function(){
	$("a.size-l").click(function(){
	$("body").removeAttr("class");
	$("body").addClass("font-l");
	$("#wrap").css("font-size","120%");
	$.cookie('bonheur','font_l',{ expires: 30,path:'/' }); //クッキーを30日間保存 
	return false;
	});
	$("a.size-m").click(function(){
	$("body").removeAttr("class");
	$("body").addClass("font-m");
	$("#wrap").css("font-size","100%");
	$.cookie('bonheur','font-m',{ expires: 30,path:'/' }); //クッキーを30日間保存 
	return false;
	});
});