function imageLink(image, linkto, alt){
		this.image = image;
		this.linkto = linkto;
		this.alt = alt;
		this.showStatic = showStatic;
		this.showSwf = showSwf;
		this.show = show;

		function show()
		{	
			didShow = true;
			if (this.image.match(/.*.swf/) && (navigator.appName != "Microsoft Internet Explorer" || (navigator.userAgent.indexOf("Opera")!=-1)))
			{
				//didShow = false;
				//this.showStatic();
				this.showSwf();
			}
			else if (this.image.match(/.*.swf/) && (navigator.appName == "Microsoft Internet Explorer" || (navigator.userAgent.indexOf("Opera")=-1)))
			{
				this.showSwf();
			}
			else
			{
				this.showStatic();
			}
			return didShow;
		}
		
		function showStatic(){
			var homeImage = new Array();
			homeImage[0] = "<a href=\"../content/verzollung.php\"><img src=\"../images/home_alternate_customs.jpg\" width=\"371\" height=\"235\" border=\"0\" alt=\"Zollabfertigung leicht gemacht\"></a>"
			homeImage[1] = "<a href=\"../content/usa_service_transittimes.php\"><img src=\"../images/home_alternate_transittimes.jpg\" width=\"371\" height=\"235\" border=\"0\" alt=\"Einfacher Versenden ...\"></a>"
			homeImage[2] = "<a href=\"../content/usa_important_links.php\"><img src=\"../images/home_alternate_links.jpg\" width=\"371\" height=\"235\" border=\"0\" alt=\"Besser informiert ...\"></a>"
			homeImage[3] = "<a href=\"../content/europe.php\"><img src=\"../images/home_alternate_europe.jpg\" width=\"371\" height=\"235\" border=\"0\" alt=\"FedEx und die Welt ...\"></a>"
			homeImage[4] = "<a href=\"../content/aktuell_home.php\"><img src=\"../images/home_alternate_aktuell.jpg\" width=\"371\" height=\"235\" border=\"0\" alt=\"Hier ist FedEx mit dabei ...\"></a>"
			showIndex = Math.abs(Math.round(Math.random() * homeImage.length) - 1);
			document.write(homeImage[showIndex]);
		}

		function showSwf()
		{
			document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="371" height="230">');
			document.write('<param name=movie value="'+this.image+'?hrefLoc='+this.linkto+'">');
			document.write('<param name=quality value=high>');
			document.write('<param name="WMode" value="Transparent">');
			document.write('<param name="allowScriptAccess" value="sameDomain" />');
			document.write('<embed src="'+this.image+'" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" wmode="transparent" width="371" height="230">');
			document.write('</embed>');
			document.write('</object>');
		}
	}
