//特集の処理設定
function randomImage()
{
img = new Array();
img[0] = "http://www.ohanasmile.jp/wp-content/themes/default/images/header/btn1.gif";
img[1] = "http://www.ohanasmile.jp/wp-content/themes/default/images/header/btn2.gif";
img[2] = "http://www.ohanasmile.jp/wp-content/themes/default/images/header/btn1_on.gif";
img[3] = "http://www.ohanasmile.jp/wp-content/themes/default/images/header/btn2_on.gif";

var url = 'http://www.ohanasmile.jp/open-blog.html#navi http://www.ohanasmile.jp/yutenji-journal.html#navi'.split(' ');
var n = Math.floor(Math.random()*2);
document.write('<a href="'+url[n]+'" rel="nofollow">');
document.write('<img src="'+img[n]+'" border="0" onMouseOver="this.src=\''+img[n-0+2]+'\'" onMouseOut="this.src=\''+img[n]+'\'">');
document.write('</a>');
}
//設定終了




