// Rondom Image

// Rondom Image

function random_img() 
{
	count = 1;
	
	/* set image alt attr */
	var alt = new Array(); 
	alt[0] = 'JDFは印刷ビジネスに高収益と高付加価値をもたらします'; 
	
	/* set image width attr */
	var width = 760;

	/* set image height attr */
	var height = 200;
	
	num = Math.floor(Math.random() * count);
	
	document.write('<div id="visual_img">');
								 
	if( num == 0 )
	{
		document.write('<img src="img_top/' + num +'.jpg" width="' + width + '" height="' + height + '" alt="' + alt[num] + '" />');
	}
	else
	{
		document.write('<map name="maplink" id="maplink">');
		document.write('<area shape="rect" coords="35,14,290,67" href="http://cip4.jp/pavilion/" alt="JDFパビリオン" title="JDFパビリオン" />');
		document.write('<area shape="rect" coords="230,162,528,199" href="http://cip4.jp/pavilion/presentation.html" alt="プレゼンテーションステージ" title="プレゼンテーションステージ" />');
		document.write('<area shape="rect" coords="155,125,399,163" href="http://cip4.jp/pavilion/solutionzone.html" alt="ソリューションゾーン" title="ソリューションゾーン" />');
		document.write('<area shape="rect" coords="9,88,327,126" href="http://cip4.jp/pavilion/demozone.html" alt="デモンストレーションゾーン" title="デモンストレーションゾーン" /></map>');
		document.write('<img src="img_top/' + num +'.jpg" width="' + width + '" height="' + height + '" alt="' + alt[num] + '" usemap="#maplink" />');
	}
	document.write('</div>');
}
