/*////////////////////////////////////////////////

学園革命伝ミツルギ なかよし
creation date 2010.9
Copyright 2010 河田雄志・行徒／SQUARE ENIX CO.,Ltd All rights reserved.
	
////////////////////////////////////////////////*/
/*------------------------------
font size
------------------------------*/
$(function(){
/*------------------------------
roll over
------------------------------*/
    $.fn.rollover = function(postfix) {
        postfix = postfix || '_on';
        return this.not('[src*="'+ postfix +'."]').each(function() {
            var img = $(this);
            var src = img.attr('src');
            var src_on = [
                src.substr(0, src.lastIndexOf('.')),
                src.substring(src.lastIndexOf('.'))
            ].join(postfix);
            img.hover(
                function() {
                    img.attr('src', src_on);
                },
                function() {
                    img.attr('src', src);
                }
            );
        });
    };
		$('.on').rollover();
});
