// Javascript for Freeplus Co.,Ltd.

// ROLLOVER

jQuery(function(){
    jQuery("img.rollover").mouseover(function(){
        jQuery(this).attr("src",jQuery(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"));
    }).mouseout(function(){
        jQuery(this).attr("src",jQuery(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));
    }).each(function(){
        jQuery("<img>").attr("src",jQuery(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"));
    });
});

// BACK TO TOP SCROLL

jQuery(function () {
        jQuery('#backtop').click(function () {
            jQuery(this).blur();

            jQuery('html,body').animate({ scrollTop: 0 }, 'slow');

            return false;
        });
});
jQuery(function () {
        jQuery('.backtop').click(function () {
            jQuery(this).blur();

            jQuery('html,body').animate({ scrollTop: 0 }, 'slow');

            return false;
        });
});
