/* 作成元：http://www.notitle-web.com/ */

function display7(){

var ad = 1;

/*これ以降は、3,4,5と数字を増やしてください。*/


for(n=0;n < ad;n++)
	{
		random();
	}


}

function random()
{

if(n == 0)
{
url = new Array(7); 
img = new Array(url.length);
text = new Array(url.length);

url[0]="http://www.dmm.com/dchara/indexhtml-002";
img[0]="http://pics.dmm.com/af/c_dchara001/468_60.jpg";
text[0] = "";

url[1]="http://www.dmm.com/monthly/idol/indexhtml-002";
img[1]="http://pics.dmm.com/af/mt_idol/468_60.jpg";
text[1] = "";

url[2]="http://www.dmm.com/top/indexhtml-002";
img[2]="http://pics.dmm.com/af/c_top001/468_60.jpg";
text[2] = "";

url[3]="http://www.dmm.com/akb48/indexhtml-002";
img[3]="http://pics.dmm.com/af/c_akb48_001/468_60.jpg";
text[3] = "";

url[4]="http://www.dmm.com/rental/comic/indexhtml-002";
img[4]="http://pics.dmm.com/af/c_rental_comic/468_60.jpg";
text[4] = "";

url[5]="http://www.dmm.com/mono/hobby/indexhtml-002";
img[5]="http://pics.dmm.com/af/c_monohobby/468_60.jpg";
text[5] = "";

url[6]="http://www.dmm.com/digital/pcgame/-/detail/=/cid=broccoli_0001/indexhtml-002";
img[6]="http://pics.dmm.com/af/c_dejipcgame001/468_60.jpg";
text[6] = "";


}

i = Math.floor(Math.random( ) * url.length);
document.write('<a href="'+url[i]+'" target="_blank">'); 
document.write('<img src="'+img[i]+'" border="0"></a><br>');
url.splice(i,1);
img.splice(i,1);
}