//ヘッダ右 テキスト読み込み
jQuery(function(){
//	jQuery("#loadTx").load("../swf/topflash_number.txt",function(){
	jQuery("#loadTx").load("../swf/top_number.txt",function(){
		var txt = jQuery(this).html();
		jQuery(this).html(
			txt.replace(/mydata=/gi,'')
		);
		/*var txt02 = jQuery(this).html();
		jQuery(this).html(
			txt02.replace(/&amp;/gi,'')
		);*/
	});
});

jQuery(document).ready(function(){
    jQuery("img.imgover").each(function() {
        var off = this.src;
        var dot = this.src.lastIndexOf('.');
        var on = this.src.substr(0, dot) +
            '_on' + this.src.substr(dot, 4);
        jQuery(this).hover(
            function() { this.src = on; },
            function() { this.src = off; });
    });
});

