//PR(ODN TOP) space randaming js
var prob = 50;

// link object
jmp = new Array();
jmp[0] = "/service/wirelesslan/mobilepointe.html?top";
jmp[1] = "/event/bb/indexe.html?top";
//jmp[2] = "/event/friend/indexe.html?top";

// image object
img = new Array();
img[0] = "root_images/en/top_mainimg_bbmp.jpg";
img[1] = "root_images/en/top_mainimg_bbcp.jpg";
//img[2] = "root_images/en/top_mainimg_mgm.jpg";

var n;

if ( Math.floor(Math.random()*100) < prob ) {
	n = 0;
} else {
	n = Math.floor(Math.random()*(jmp.length-1)) + 1;
}

document.write("<img src='"+img[n]+"' border='0' alt='' usemap='#Map'>");


document.write("<map name='Map'>");
document.write("<area shape='rect' coords='31,21,335,133' href='"+jmp[n]+"'>");
document.write("<area shape='rect' coords='19,182,85,198' href='/scene/studente.html' alt='On abroad'>");
document.write("<area shape='rect' coords='154,182,261,198' href='/scene/foreignere.html' alt='For English speakers'>");
document.write("<area shape='rect' coords='84,182,155,198' href='/scene/businesse.html' alt='On business'>");
document.write("<area shape='rect' coords='260,182,322,198' href='/scene/homee.html' alt='At home'>");
document.write("<area shape='rect' coords='583,112,683,129' href='/service/coursee.html' alt='Connection service'>");
document.write("<area shape='rect' coords='583,128,637,145' href='/service/indexe.html' alt='Services'>");
document.write("<area shape='rect' coords='583,144,646,161' href='/service/price_type1e.html' alt='Usage fee'>");
document.write("<area shape='rect' coords='583,160,717,178' href='/faq/indexe.html' alt='Frequently Asked Questions'>");
document.write("<area shape='rect' coords='573,22,725,87' href='http://regist.spinnet.jp/cgi-bin/ad2/ad.cgi?base=default&lang=en&dmode=s' alt='Sign up'>");
document.write("</map>");

