$(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");
        }
    );

});