function swapimg(obj) {
if(obj.src.match(/_f2.(jpg|gif|png)/)) {
obj.src = obj.src.replace('_f2', '');
} else {
obj.src = obj.src.replace(/\.(jpg|gif|png)$/, "_f2.$1");
}
}

jQuery(function($){

/* フォントサイズ */
var history = $.cookie('fontSize');
var elm = $('body');

(!history)? elm.addClass('JFont1'):elm.addClass(history);

if( history == 'JFont1' ){
$('#RSpNav1 .CLi1 a').addClass('ROn');
$('#RSpNav2 .CLi1 a').removeClass('ROn');
}
else if( history == 'JFont2' ) {
$('#RSpNav1 .CLi1 a').removeClass('ROn');
$('#RSpNav1 .CLi2 a').addClass('ROn');
}

$('#RSpNav1 li a').click(function(){
var setFontSize = this.id;
$.cookie('fontSize', setFontSize);
elm.removeClass().addClass(setFontSize);
$('#RSpNav1 li a').each(function(){
$(this).removeClass('ROn');
});
$(this).addClass('ROn');
});





});

