// ランダムに画像を表示する
var tag ='';

tag= new Array();
// ジャンプ先のアドレス(数字は画像と対応)
tag[0] = '<a href="http://www.7happy.jp/" target="_blank"><img src="http://creditsearch.jp/shop/7happy/160x600.gif" width="160" height="600"></a>';
tag[1] = '<a href="http://www.asunarogift.jp/" target="_blank"><img src="http://creditsearch.jp/shop/asunaro/160x600.jpg" width="160" height="600"></a>';
i=Math.floor(Math.random()*tag.length);
document.write(tag[i]);
