
var fontSize = {s:'0.75em', m:'0.94em', b:'1.13em'}

$(function(){
	
	
	/**
	 * メニューロールオーバー
	 */
	$("img[ref$=over]").hover(
		function(){  
			this.src = this.src.replace(/^(.+).(gif|jpe?g|png)$/, "$1_on.$2");  
		},
		function(){
			this.src = this.src.replace(/^(.+)_on.(gif|jpe?g|png)$/, "$1.$2");  
		}
	);
	
	
	/**
	 * font size
	 */
	$("#size_list li a").click(function(){
		
		var tagetImgTag = $(this).children("img");
		
	    $("#size_list li a").each(function(){
            var imgTag = $(this).children("img");
			
			if(imgTag.attr("src").indexOf("_on", 0)){
			    imgTag.attr("src", imgTag.attr("src").replace(/^(.+)_on.(gif|jpe?g|png)$/, "$1.$2"));
			
			}
			
		});
		
		tagetImgTag.attr("src", tagetImgTag.attr("src").replace(/^(.+).(gif|jpe?g|png)$/, "$1_on.$2"));
		$("body").css("font-size", fontSize[$(this).attr("id")]);

	});
	
});
