var max = 10;
var nrImages = 21;
function makeImages() {
this[0] = "http://files.japanfury.com/200000102-6fdae70d4c/MilNomesLogo1.jpg";
this[1] = "http://i169.photobucket.com/albums/u215/kamen_rider_black_rx/limk-orider.jpg";
this[2] = "http://serieelementais.files.wordpress.com/2010/04/elementais7.png";
this[3] = "http://2.bp.blogspot.com/_z3-MCFugKnY/StJQjS8s44I/AAAAAAAACk4/UFS1rm-5xhA/S240/botao_quadrinholatra.png";
this[4] = "http://img.photobucket.com/albums/v336/Lordseth/pastobanner.jpg";
this[5] = "http://amanohara.files.wordpress.com/2010/01/amanohara-banner.png";
this[6] = "http://farm3.static.flickr.com/2789/4427710958_63770ecc9d_o.jpg";
this[7] = "http://img40.imagefra.me/img/img40/2/1/31/datenas/f_3m_3ae89c1.jpg";
this[8] = "http://1.bp.blogspot.com/_iqUQLrHnb28/S2hnvR_BE4I/AAAAAAAAAAM/UIT52qCE4Ts/S1600-R/banner_marne.jpg";
this[9] = "http://4.bp.blogspot.com/_Hz3-ArLhAdA/SYoLWMDXjfI/AAAAAAAAAHQ/vZoDvuVOfZg/S768/VINHETA+BLOG.JPG";
this[10] = "http://3.bp.blogspot.com/_kISmyeYTdy0/SVZyv7qjBBI/AAAAAAAAACU/gb2eQJw4Zas/S730/cabecalho_quadrinhos.JPG";
this[11] = "http://2.bp.blogspot.com/_kISmyeYTdy0/SU0aEhfIp1I/AAAAAAAAAAU/2NKOJ7DOoJ8/S660/CABECALHO+CITACOES.JPG";
this[12] = " http://www.mangaemproducao.info/imgs/banner468x60.gif";
this[13] = "http://2.bp.blogspot.com/_EI4-CboL0Po/S3bSJJy5wnI/AAAAAAAAA7E/xgUXSuk0l1Q/S660/banner3+copy.jpg";
this[14] = "http://i172.photobucket.com/albums/w34/chapaquente/logo6.jpg";
this[15] = "http://img718.imageshack.us/img718/1679/osoldameianoite.jpg";
this[16] = "http://img195.imageshack.us/img195/5205/bannercp.png";
this[17] = "http://2.bp.blogspot.com/_OQ927T_pELs/S2OIPybZYiI/AAAAAAAABzQ/MnbiU0_1h-E/S1600-R/Hulk-filme3.jpg";
this[18] = "http://i172.photobucket.com/albums/w34/chapaquente/neon_sign1-1.jpg";
this[19] = "http://2.bp.blogspot.com/_-A-LE_trv9M/S61iOnzwwSI/AAAAAAAAAAU/nKF8tb_pbbs/S1600-R/ehnoiz4.jpg";
this[20] = "http://img199.imageshack.us/img199/8329/drumnbassjpg.jpg";

this.length = nrImages;
}
function makeLinks() {
this[0] = "http://www.milnomes.com/";
this[1] = "http://orider.blogspot.com/";
this[2] = "http://serieelementais.wordpress.com/";
this[3] = "http://quadrinholatra.blogspot.com";
this[4] = "http://obscuro.mypodcast.com/";
this[5] = "http://amanohara.wordpress.com/";
this[6] = "http://complexowill.blogspot.com/";
this[7] = "http://www.teruki.blogspot.com/";
this[8] = "http://ensopadodenabo.blogspot.com";
this[9] = "http://domandreonline.blogspot.com/";
this[10] = "http://domandreemquadrinhos.blogspot.com/";
this[11] = "http://ascitacoesdodomandre.blogspot.com/";
this[12] = "http://www.mangaemproducao.info/";
this[13] = "http://josemidesenhos.blogspot.com/";
this[14] = "http://monte-de-palavras.blogspot.com/";
this[15] = "http://borbacrivaro.blogspot.com/";
this[16] = "http://projetocp.blogspot.com/";
this[17] = "http://cavernadohulk.blogspot.com/";
this[18] = "http://cenini.blogspot.com/";
this[19] = "http://www.eh-noizbr.blogspot.com/";
this[20] = "http://drumnbass.xp3.biz/";

this.length = nrImages;
}
var vetImages = new makeImages();
var vetLinks = new makeLinks();
var x = Math.round(Math.random()*max);
var y = max / nrImages;
for(var cont = 4;cont*y<= max;cont++) {
if (x <= (cont*y)) {
document.write("<a href="+vetLinks[cont-1]+" target=_blank><img src="+vetImages[cont-1]+" border=0></a>");
document.write("<a href="+vetLinks[cont-2]+" target=_blank><img src="+vetImages[cont-2]+" border=0></a>");
document.write("<a href="+vetLinks[cont-3]+" target=_blank><img src="+vetImages[cont-3]+" border=0></a>");
document.write("<a href="+vetLinks[cont-4]+" target=_blank><img src="+vetImages[cont-4]+" border=0></a>");
break;
}
}
