
	gSlideshowInterval = 1;
	gNumberOfImages = 11;

	gImages = new Array(gNumberOfImages);

	gImages[0] = "images/products/showcase091.jpg";
	gImages[1] = "images/products/showcase08.jpg";
	gImages[2] = "images/products/showcase089.jpg";
	gImages[3] = "images/products/showcase082.jpg";
	gImages[4] = "images/products/showcase083.jpg";
	gImages[5] = "images/products/showcase086.jpg";
	gImages[6] = "images/products/showcase088.jpg";
	gImages[7] = "images/products/showcase081.jpg";
	gImages[8] = "images/products/showcase093.jpg";
	gImages[9] = "images/products/showcase094.jpg";
	gImages[9] = "images/products/showcase095.jpg";
	gImages[10] = "images/teacups/tea_mug01.jpg";


	function canManipulateImages() {
		if (document.images)
			return true;
		else
			return false;
	}
	function loadSlide(imageURL) {
		if (gImageCapableBrowser) {
			document.slide.src = imageURL;
			return false;
		}
		else {
			return true;
		}
	}
	function nextSlide() {
		gCurrentImage = (gCurrentImage + 1) % gNumberOfImages;
		loadSlide(gImages[gCurrentImage]);
	}

	gImageCapableBrowser = canManipulateImages();
	gCurrentImage = 0;
	setInterval("nextSlide()",gSlideshowInterval * 4000);





        function change_parent_url(url)        
	{	    
		document.location=url;        
	}



	function getthedate()
	{
		var mydate=new Date()
		var year=mydate.getYear()
		if (year < 1000)
		year+=1900
		
		
		var day=mydate.getDate()
		var month=mydate.getMonth()+1

		var hours=mydate.getHours()
		var minutes=mydate.getMinutes()
		var seconds=mydate.getSeconds()

		if (hours>=12)
		var dn="PM"

		if (hours<12)
		var dn="AM"

		if (hours>12){
		hours=hours-12
		}
		if (hours==0)
		hours=12

		if (minutes<=9)
		minutes="0"+minutes
		if (seconds<=9)
		seconds="0"+seconds

		var cdate = month + "/" + day + "/" + year + " " + hours + ":" + minutes + ":" + seconds + " " + dn;
		document.all.clock.value=cdate;
	}

	function getCurrentDateTime()
	{
		if (document.all || document.getElementById)
		   setInterval("getthedate()",1000)
	}





