// definerer samtlige bannere
var bannere = new Array();

// banner_fixed_left = "<a href='Default.aspx?ID=224'><img src='Files/System/panayotis_dk/grafik/bannere/smaa/Juletilbud-2011.jpg' border='0'></a>";
banner_fixed_right = "<a href='http://www.panayotis.dk/Default.aspx?ID=54'><img src='Files/System/panayotis_dk/grafik/bannere/smaa/LILLEBANNER2.jpg' border='0'></a>";

bannere[0] = "<a href='http://www.panayotis.dk/Default.aspx?ID=494'><img src='Files/System/panayotis_dk/grafik/bannere/smaa/2012-LILLEBANNER.jpg' border='0'></a>";
bannere[1] = "<a href='http://www.panayotis.dk/Default.aspx?ID=407'><img src='Files/System/panayotis_dk/grafik/bannere/smaa/GARANTIBA.jpg' border='0'></a>";
bannere[2] = "<a href='http://www.panayotis.dk/Default.aspx?ID=459'><img src='Files/System/panayotis_dk/grafik/bannere/smaa/web_lille_jubi_magasin_0308.jpg' border='0'></a>";
bannere[3] = "<a href='http://www.panayotis.dk/Default.aspx?ID=552'><img src='Files/System/panayotis_dk/grafik/bannere/smaa/LILLEBANNER.jpg' border='0'></a>";


// randomizer arrayet med bannerne
function randOrd(a, b){
 return (Math.round(Math.random())-0.7);
}
bannere.sort( randOrd );

// udskriver 
document.write ("<table cellpadding='0' cellspacing='0' width='100%'>");
document.write (" <tr>");
document.write ("  <td>" + bannere[1] + "</td>");
document.write ("  <td><img src='Files/Nothing.gif' width='4' height='1'></td>");
document.write ("  <td>" + bannere[2] + "</td>");
document.write ("  <td><img src='Files/Nothing.gif' width='4' height='1'></td>");
document.write ("  <td>" + bannere[3] + "</td>");
document.write ("  <td><img src='Files/Nothing.gif' width='4' height='1'></td>");
document.write ("  <td>" + banner_fixed_right + "</td>");
document.write (" </tr>");
document.write ("</table>");
