/*//////////////////////////////////////////////////////////////////////////////
// post_load.js
////////////////////////////////////////////////////////////////////////////////
// javascript tasks that we need to perform once the main part of the page has
// loaded
////////////////////////////////////////////////////////////////////////////////
// AUTHOR  : Paul Rees
// CONTACT : dev@page87.com
// CREATED : 13-11-06
// CVS     : $Id$
//////////////////////////////////////////////////////////////////////////////*/

// set the slideshow count and first image info
x = slideshow.getElementById("image-count");
x.innerHTML = slideshow.slides.length;

x = slideshow.getElementById('image-title');
x.innerHTML = slideshow.slides[0].title;

x = slideshow.getElementById('image-object');
x.innerHTML = slideshow.slides[0].objectInfo;

x = slideshow.getElementById('image-customer');
x.innerHTML = slideshow.slides[0].customerInfo;
	
if (document.images) 
	slideshow.image = document.images.slideshowImage;


