// JavaScript Document
Image1 = new Image()
		Image1.src = "/getfile.php/Filer/Sponsors/vbl_sponsors_Lindab.jpg"
		
		Image2 = new Image()
		Image2.src = "/getfile.php/Filer/Sponsors/vbl_sponsors_OM.png"
		
		Image3 = new Image()
		Image3.src = "/getfile.php/Filer/Sponsors/vbl_sponsors_NS.png"
		
		Image4 = new Image()
		Image4.src = "/getfile.php/Filer/Sponsors/vbl_sponsors_astrup.png"
		
		function SwapOut($navn) {
			if ($navn == 'LD'){
				document.ld.src = Image1.src; return true;
			}
			else if($navn == 'OM'){
				document.om.src = Image2.src; return true;
			}
			else if($navn == 'NS'){
				document.ns.src = Image3.src; return true;
			}
			else if($navn == 'AS'){
				document.as.src = Image4.src; return true;
			}
		}
		
		function SwapBack($navn) {
			if ($navn == 'LD'){
				document.ld.src = "/getfile.php/Filer/Sponsors/vbl_sponsors_hover_Lindab.jpg"; return true;
			}
			else if($navn == 'OM'){
				document.om.src = "/getfile.php/Filer/Sponsors/vbl_sponsors_hover_OM.png"; return true;
			}
			else if($navn == 'NS'){
				document.ns.src = "/getfile.php/Filer/Sponsors/vbl_sponsors_hover_NS.png"; return true;
			}
			else if($navn == 'AS'){
				document.as.src = "/getfile.php/Filer/Sponsors/vbl_sponsors_hover_astrup.png"; return true;
			}
	}
