/*
 * Display Random images on page reloading
 *
 */
var theImages = new Array()

      theImages[0] = 'iphone-FASTEST.jpg'
      theImages[1] = 'apple-3gs-0.jpg'
      theImages[2] = 'apple-iphone-3gs-2-0.JPG'
      theImages[3] = 'iphone-accessibility.jpg'
      theImages[4] = 'iphone-cutcopypaste.jpg'



function showImage( path, theImages, theTitles, theLinks,  width, height ){
    
    var link_start ='';
    var link_end ='';
    var p = theImages.length;
    var whichImage = Math.round(Math.random()*(p-1));

    if(theLinks[whichImage]) {
        link_start ='<a href="'+theLinks[whichImage]+'" title="'+theTitles[whichImage]+'">';
        link_end ='</a>';
    }
    document.write(link_start+'<img class="orange_border" alt="'+theTitles[whichImage]+'" src="'+path+theImages[whichImage]+'" border=0 width='+width+' height='+height+'>'+link_end);
}




