function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="../Files/Filer/sponsorer/3m.gif";
myimages[2]="../Files/Filer/sponsorer/abena.gif ";
myimages[3]="../Files/Filer/sponsorer/abigo.gif";
myimages[4]="../Files/Filer/sponsorer/advanordic.gif";
myimages[5]="../Files/Filer/sponsorer/apodan.gif";
myimages[6]="../Files/Filer/sponsorer/arjohuntleigh.gif";
myimages[7]="../Files/Filer/sponsorer/athene.gif";
myimages[8]="../Files/Filer/sponsorer/biomet.gif";
myimages[9]="../Files/Filer/sponsorer/bitelab.gif";
myimages[10]="../Files/Filer/sponsorer/bramming.gif";
myimages[11]="../Files/Filer/sponsorer/coloplast.gif";
myimages[12]="../Files/Filer/sponsorer/convatec.gif";
myimages[13]="../Files/Filer/sponsorer/danpleje.gif";
myimages[14]="../Files/Filer/sponsorer/green_comfort.gif";
myimages[15]="../Files/Filer/sponsorer/hartmann.gif";
myimages[16]="../Files/Filer/sponsorer/kci.gif";
myimages[17]="../Files/Filer/sponsorer/lohmann_rauscher.gif";
myimages[18]="../Files/Filer/sponsorer/kvalicare.gif";
myimages[19]="../Files/Filer/sponsorer/mediq.gif";
myimages[20]="../Files/Filer/sponsorer/molnlycke.gif";
myimages[21]="../Files/Filer/sponsorer/radiometer.gif";
myimages[22]="../Files/Filer/sponsorer/sigvaris.gif";
myimages[23]="../Files/Filer/sponsorer/simonsen_weel.gif";
myimages[24]="../Files/Filer/sponsorer/smith_nephew.gif";
myimages[25]="../Files/Filer/sponsorer/tempur.gif";
myimages[26]="../Files/Filer/sponsorer/pall.gif";
myimages[27]="../Files/Filer/sponsorer/vivostat.gif";
myimages[28]="../Files/Filer/sponsorer/zibo.gif";

 
//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.3mhealthcare.dk";
imagelinks[2]="http://www.abena.dk";
imagelinks[3]="http://www.abigo.se";
imagelinks[4]="http://www.advanordic.dk";
imagelinks[5]="http://www.apodan.dk";
imagelinks[6]="http://www.arjohuntleigh.dk";
imagelinks[7]="http://www.athenehealthcare.dk";
imagelinks[8]="http://www.biomet.dk";
imagelinks[9]="http://www.bitelab.fi";
imagelinks[10]="http://www.bpi.dk";
imagelinks[11]="http://www.coloplast.dk";
imagelinks[12]="http://www.convatec.dk";
imagelinks[13]="http://www.onemed.dk";
imagelinks[14]="http://www.green-comfort-medical.dk";
imagelinks[15]="http://www.dk.hartmann.info";
imagelinks[16]="http://www.kci-medical.com/";
imagelinks[17]="http://www.kvalicare.dk";
imagelinks[18]="http://www.lohmann-rauscher.dk";
imagelinks[19]="http://www.mediqdanmark.dk";
imagelinks[20]="http://www.molnlycke.dk";
imagelinks[21]="http://www.radiometer.dk";
imagelinks[22]="http://www.kirudan.dk/seneste_nyheder/kirudanasovertagersigvarisagenturet.html";
imagelinks[23]="http://www.sw.dk";
imagelinks[24]="http://www.smith-nephew.dk";
imagelinks[25]="http://www.tempurmed.dk";
imagelinks[26]="http://www.pall.com";
imagelinks[27]="http://www.vivostat.dk";
imagelinks[28]="http://www.zibo.dk";


var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+' target="_blank"><img src="'+myimages[ry]+'" border=0 target="_blank"></a>')
}


/***********************************************
* Random Order Content (from DIVs) script- by JavaScript Kit (www.javascriptkit.com)
* This notice must stay intact for usage
* Visit JavaScript Kit at http://www.javascriptkit.com/ for this script and 100s more
***********************************************/

if (document.getElementById)
document.documentElement.className = 'jsclass'; //hide content for DOM capable browsers


var randomordercontentdisplay={
	divholders:new Object(),
	masterclass: "randomordercontent",

	init:function(){
		if (!document.getElementById)
			return
		var alldivs=document.getElementsByTagName("div")
		var randomcontentsearch=new RegExp(this.masterclass+"\\s+(group\\d+)", "i") //check for CSS class="randomcontent groupX" (x=integer)
		for (var i=0; i<alldivs.length; i++){
			if (randomcontentsearch.test(alldivs[i].className)){
				if (typeof this.divholders[RegExp.$1]=="undefined"){ //if object to hold this group of divs doesn't exist yet
					this.divholders[RegExp.$1]=new Object() //create object
					this.divholders[RegExp.$1].ref=[] //create array to hold each div within group
					this.divholders[RegExp.$1].contents=[] //create array to hold each div's content within group
				}
					this.divholders[RegExp.$1].ref.push(alldivs[i]) //add this div to the array
					this.divholders[RegExp.$1].contents.push(alldivs[i].innerHTML) //add this div's content to the array
			}
		}
	this.scrambleorder()
	},

	scrambleorder:function(){
		for (group in this.divholders){ //loop thru each array within object
			this.divholders[group].contents.sort(function() {return 0.5 - Math.random()}) //scramble contents array
			for (var i=0; i<this.divholders[group].ref.length; i++){
				this.divholders[group].ref[i].innerHTML=this.divholders[group].contents[i]
				this.divholders[group].ref[i].style.display="block"
			}
		}
	}
}

