/*-- 画像ランダム切替 --*/

img = new Array();
alt = new Array();
lnk = new Array();
img[0] = "bnr_image01.jpg"; /*-- FX-100 --*/
img[1] = "bnr_image02.jpg"; /*-- LP-V --*/
img[2] = "bnr_image03.jpg"; /*-- DP-100 --*/
img[3] = "bnr_image04.jpg"; /*-- SF2B --*/
alt[0] = "Digital Fiber Sensor FX-100 series"; /*-- FX-100 --*/
alt[1] = "FAYb Laser Marker LP-V series"; /*-- LP-V --*/
alt[2] = "Dual Display Digital Pressure Sensor DP-100 series"; /*-- DP-100 --*/
alt[3] = "Light Curtain Type 2 SF2B series"; /*-- SF2B --*/
lnk[0] = "fiber/fx-100/index.html"; /*-- FX-100 --*/
lnk[1] = "lasermarker/lp-v10/index.html"; /*-- LP-V --*/
lnk[2] = "pressure/dp-100/index.html"; /*-- DP-100 --*/
lnk[3] = "safety/sf2b/index.html"; /*-- SF2B --*/

n = Math.floor(Math.random()*img.length);

document.write('<a href="products/'+lnk[n]+'"><img src="images/'+img[n]+'" width="760" height="200" alt="'+alt[n]+'" /></a>');