//スタイルシート用　ネスケ4.x対策

function fontpatch() {
	sSheet = document.styleSheets[document.styleSheets.length-1];
	if ( document.defaultView.getComputedstyle( document.body, "" ).getPropertyValue( "font-size" ) == "14px" ){
		sSheet.insertRule( "body {font-size: 16px }", sSheet.cssRules.length );
	}
}

if ( document.defaultView && document.styleSheets ) {
	window.onload = fontpatch();
}

//スワップイメージ

var imgObj;

if ( document.images ){
	var ani_ya_off = new Image();
	var ani_ya_on = new Image();

	ani_ya_off.src = "images/ani_ya_off.gif";
	ani_ya_on.src = "images/ani_ya_on.gif";
}

function Init() {
}

function changeImg( name, para ) {
		document.images[name].src = eval( "ani_ya_" + para + ".src" );

}