jmp_c = new Array();
img_c = new Array();
// ジャンプ先のアドレス(数字は画像と対応)
jmp_c[0] = "http://twitter.com/mens_yukai";
jmp_c[1] = "http://twitter.com/mens_yukai";
jmp_c[2] = "http://twitter.com/mens_yukai";
jmp_c[3] = "http://www.mens-yukai.jp/thismonth.html";
jmp_c[4] = "http://www.mens-yukai.jp/thismonth.html";
// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img_c[0] = "cover01.gif";
img_c[1] = "cover02.gif";
img_c[2] = "cover03.gif";
img_c[3] = "cover04.gif";
img_c[4] = "cover05.gif";
n = Math.floor(Math.random()*jmp_c.length);
if(n != 3){
document.write("<a href='"+jmp_c[n]+"' target=\"_blank\">");
document.write("<img src='"+img_c[n]+"' border='0'>");
document.write("</a>");
} else{
	document.write("<a href='#' onclick='window.open(\"thismonth.html\",\"vol1\",\"resizable=no,width=650,height=790,scrollbars= no\")'>");
	document.write("<img src='"+img_c[n]+"' border='0'>");
	document.write("</a>");


}
