// definerer samtlige bannere
var bannere = new Array();

bannere[0] = "<a href='http://www.vip-booking.com/public/references.asp' target='_blank'><img src='../grafik_mg/banner/banner_members_say_1.gif' /></a>";
bannere[1] = "<a href='http://www.vip-booking.com/public/references.asp' target='_blank'><img src='../grafik_mg/banner/banner_members_say_2.gif' /></a>"; 
bannere[2] = "<a href='http://www.vip-booking.com/public/references.asp' target='_blank'><img src='../grafik_mg/banner/banner_members_say_3.gif' /></a>";
bannere[3] = "<a href='http://www.vip-booking.com/public/references.asp' target='_blank'><img src='../grafik_mg/banner/banner_members_say_4.gif' /></a>";
bannere[4] = "<a href='http://www.vip-booking.com/public/references.asp' target='_blank'><img src='../grafik_mg/banner/banner_members_say_5.gif' /></a>";
// randomizer arrayet med bannerne
function randOrd(a, b){
 return (Math.round(Math.random())-0.5);
}
bannere.sort( randOrd );

// udskriver 2 bannere
document.write (bannere[0]);

