function clients(){
var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
	dimensions: [150, 80], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["Images/collective-brands.png", "", "", ""],
		["Images/hcl.jpg", "", "", ""],
		["Images/ilfs.jpg", "", "", ""],
		["Images/kurl-on.jpg", "", "", ""],
		["Images/y-klub.jpg", "", "", ""],
		["Images/infibeam.jpg", "", "", ""],
		["Images/ontrac.jpg", "", "", ""],
		["Images/xyka.jpg", "", "", ""],
		["Images/phoenix.jpg", "", "", ""],
		["Images/compassites.jpg", "", "", ""],
		["Images/pepper-village.jpg", "", "", ""],
		["Images/tbm.jpg", "", "", ""],
		["Images/marlabs.jpg", "", "", ""] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:3000, cycles:0, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 750, //transition duration (milliseconds)
	descreveal: "none",
	togglerid: ""
})
}
if (window.addEventListener)
window.addEventListener("load", clients, false)
else if (window.attachEvent)
window.attachEvent("onload", clients)
else if (document.getElementById)
window.onload=clients


