// Randam image change.
jmp = new Array();
img = new Array();
// Jump to This URL with unbers.
jmp[0] = "products/sbc/";
jmp[1] = "products/cad-compo/";
jmp[2] = "products/dbp/";




// Image for display same number with above URL.
img[0] = "img/top_image_indesign.jpg";
img[1] = "img/top-img_3.jpg";
img[2] = "img/top-img_dbp.gif";




n = Math.floor(Math.random()*jmp.length);
document.write("<a href='"+jmp[n]+"'>");
document.write("<img src='"+img[n]+"'height='250' width='900' border='0' alt='Adobe Illustrator plug-in' galleryimg='no'>");
document.write("</a>");