// JavaScript Document

function menu_histoire(title_onglet_actif, background_color_hover) { 
document.write("<style type=\"text/css\">");

// histoire_menu
document.write (".histoire_menu {border-style:solid; border-color:#00ffff; border-width:1px; padding:0.2%; font-family:arial; font-size:8pt; font-weight:bold;}");
document.write("a.histoire_menu:hover{background-color:" + background_color_hover + ";}" );

document.write("</style>");

// Présentation 
document.write("<p>");
if (title_onglet_actif == 'Présentation') document.write("<span class=\"histoire_menu\" style=\"position:absolute; top:12%; left:18%; width:7%; cursor:default; background-color:red; color:white;\">Présentation<\/span> ");
else document.write("<a class=\"histoire_menu\" href=\"lesvenelles-presentation.htm\" style=\"position:absolute; top:12%; left:18%; width:7%;\">Présentation<\/a> ");
document.write("<\/p>");

// Comment sont nées les Venelles 
document.write("<p>");
if (title_onglet_actif == 'Comment_sont_nées_les_Venelles') document.write("<span class=\"histoire_menu\" style=\"position:absolute; top:12%; left:26%; width:20%; cursor:default; background-color:red; color:white;\">Comment sont nées les Venelles<\/span> ");
else document.write("<a class=\"histoire_menu\" href=\"naissancedesvenelles.htm\" style=\"position:absolute; top:12%; left:26%; width:20%;\">Comment sont nées les Venelles<\/a> ");
document.write("<\/p>");

// Coût et financement du projet
document.write("<p>");
if (title_onglet_actif == 'Cout_et_financement') document.write("<span class=\"histoire_menu\" style=\"position:absolute; top:12%; left:46.8%; width:12%; cursor:default; background-color:red; color:white;\">Co&ucirc;t et financement<\/span> ");
else document.write("<a class=\"histoire_menu\" href=\"coutfinancementduprojet.htm\" style=\"position:absolute; top:12%; left:46.8%; width:12%;\">Co&ucirc;t et financement<\/a> ");
document.write("<\/p>");

// Maquettes
document.write("<p>");
if (title_onglet_actif == 'Maquettes') document.write("<span class=\"histoire_menu\" style=\"position:absolute; top:12%; left:60%; width:7%; cursor:default; background-color:red; color:white;\">Maquettes<\/span> ");
else document.write("<a class=\"histoire_menu\" href=\"maquettes.htm\" style=\"position:absolute; top:12%; left:60%; width:7%;\">Maquettes<\/a> ");
document.write("<\/p>");

// Construction
document.write("<p>");
if (title_onglet_actif == 'Construction') document.write("<span class=\"histoire_menu\" style=\"position:absolute; top:12%; left:68%; width:7%; cursor:default; background-color:red; color:white;\">Construction<\/span> ");
else document.write("<a class=\"histoire_menu\" href=\"construction.htm\" style=\"position:absolute; top:12%; left:68%; width:7%;\">Construction<\/a> ");
document.write("<\/p>");

document.write("<p>");
if (title_onglet_actif == 'Archives_communales') document.write("<span class=\"histoire_menu\" style=\"position:absolute; top:12%; left:76%; width:12%; cursor:default; background-color:red; color:white;\">Archives communales<\/span> ");
else document.write("<a class=\"histoire_menu\" href=\"http://homeusers.brutele.be/metalcat/archives-communales-convention-commune-ausia.htm\" style=\"position:absolute; top:12%; left:76%; width:12%;\">Archives communales<\/a> ");
document.write("<\/p>");



}

