// JavaScript Document
//menubar hover
$(function(){
  $("#m1,#m3,#m5,#m6,#m7,#m8").hover(menu_erover,menu_eraf);
});
function menu_erover(){
$(this).addClass("menubar_actief");
$(".menubar_huidig").addClass("huidig2");
$(".huidig2").removeClass("menubar_huidig");
$(".sub_huidig").hide();
}
function menu_eraf(){
$(this).removeClass("menubar_actief");
$(".huidig2").addClass("menubar_huidig");
$(".menubar_huidig").removeClass("huidig2");
$(".sub_huidig").show();
}

//menubar hover bij submenu
$(function(){
  $("#m2,.submenu_onzechiro").hover(submenu_onzechiro_show,submenu_onzechiro_hide);
});
function submenu_onzechiro_show(){
$("#m2").addClass("menubar_actief");
$(".submenu_onzechiro").show();
$(".menubar_huidig").addClass("huidig2");
$(".huidig2").removeClass("menubar_huidig");
$(".sub_huidig").hide();
$(".submenu_onzechiro").show();
}
function submenu_onzechiro_hide(){
$("#m2").removeClass("menubar_actief");
$(".submenu_onzechiro").hide();
$(".huidig2").addClass("menubar_huidig");
$(".menubar_huidig").removeClass("huidig2");
$(".submenu_onzechiro").hide();
$(".sub_huidig").show();
}

$(function(){
  $("#m4,.submenu_verhuur").hover(submenu_verhuur_show,submenu_verhuur_hide);
});
function submenu_verhuur_show(){
$("#m4").addClass("menubar_actief");
$(".submenu_verhuur").show();
$(".menubar_huidig").addClass("huidig2");
$(".huidig2").removeClass("menubar_huidig");
$(".sub_huidig").hide();
$(".submenu_verhuur").show();
}
function submenu_verhuur_hide(){
$("#m4").removeClass("menubar_actief");
$(".submenu_verhuur").hide();
$(".huidig2").addClass("menubar_huidig");
$(".menubar_huidig").removeClass("huidig2");
$(".submenu_verhuur").hide();
$(".sub_huidig").show();
}


