function random(range) 
{ 
	if (Math.random)
	{
		return Math.round(Math.random() * (range-1));
	}
	else
	{ 
		var now = new Date();
		return (now.getTime() / 1000) % range;
	}
}

var choice = random(5) + 1;

function printBanner()
{
	document.write('<TABLE WIDTH="100%" HEIGHT="100%" CELLPADDING=0 CELLSPACING=0><TR>');
	document.write('<TD><IMG SRC="design/title.gif" BORDER=0></TD>');
	document.write('<TD><DIV ALIGN="right"><IMG SRC="design/top/'+choice+'.jpg" BORDER=0></DIV></TD>');
	document.write('</TR></TABLE>');
}

function printMenuItem(link, text, target)
{
	var dest = '';
	if (target)
	{
		dest = ' target="' + target +'"';
	}
	document.write('<TR><TD CLASS="menu_item" NOWRAP>&curren; <A HREF="'+link+'"' + dest +'>'+text+'</A></TD></TR>');
}

function printMenu()
{
	document.write('<DIV ALIGN="center" STYLE="padding-top: 20px; padding-bottom: 10px;">');
	document.write('<IMG SRC="design/logo.jpg" BORDER=0 WIDTH=170 HEIGHT=88></DIV><BR>');
	document.write('<TABLE CLASS="menu" CELLSPACING=0>');
	document.write('<TR><TD CLASS="menu_title">Menu</TD></TR>');
	printMenuItem('index.html', 'Accueil');
	printMenuItem('tous.html', 'Sport pour tous, éducatif');
	printMenuItem('competition.html', 'Sport de compétition');
	printMenuItem('bien.html', 'Soyez bien dans votre peau');
	printMenuItem('ouquand.html', 'Lieu & horaires');
	printMenuItem('contact.html', 'Contact');
	printMenuItem('pages/galerie/training/index.html', 'Images - Entrainement', '_blank');
	printMenuItem('pages/galerie/fun/album/index.html', 'Images - La fête (alles geven)', '_blank');
	printMenuItem('movies.html', 'Movies');
	document.write('</TABLE>');
}

function printHeader()
{
	document.write('<TABLE CLASS="main" ALIGN="center" CELLPADDING=0 CELLSPACING=0><TR><TD VALIGN="top">');
		document.write('<TABLE WIDTH="100%" HEIGHT="100%" CELLPADDING=0 CELLSPACING=0><TR><TD COLSPAN=2 CLASS="main_top">');
			printBanner()
		document.write('</TD></TR><TR><TD VALIGN="top" CLASS="main_menu">');
			printMenu();
		document.write('</TD><TD VALIGN="top" WIDTH=600>');
			document.write('<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH="100%">');
			document.write('<TR><TD CLASS="main_content"><DIV CLASS="content_title">');				
}

function printTrailer()
{
			document.write('</TD></TR></TABLE>');
		document.write('</TD></TR>');
		document.write('<TR><TD COLSPAN=2 CLASS="main_bottom">Le Gaulois - 0475/25 60 94 &nbsp;</TD></TR>');
		document.write('</TABLE>');
	document.write('</TD></TR></TABLE>');
}

