function showpicture() {
document.getElementById('imgplaquette').style.display="block";
}

function hidepicture() {
document.getElementById('imgplaquette').style.display="none";
}

/* Effects using JQuery library */

$(document).ready(function($toshow){

if($toshow==2)
{
hide(1);
hide(2);
hide(3);
}

else if($toshow==3)
{
hide(1);
hide(2);
hide(4);
}

else if($toshow==4)
{
hide(1);
hide(2);
hide(3);
}

else 
{
hide(2);
hide(3);
hide(4);
}

  $("a")
      .filter(".menu1")
      .mouseover(function(){
        hide(2);
        hide(3);
        hide(4);
        show(1);
      })
          .end();

  $("a")
      .filter(".menu2")
      .mouseover(function(){
        hide(1);
        hide(3);
        hide(4);
        show(2);
      })
          .end();

  $("a")
      .filter(".menu3")
      .mouseover(function(){
        hide(2);
        hide(1);
        hide(4);
        show(3);
      })
          .end();

  $("a")
      .filter(".menu4")
      .mouseover(function(){
        hide(2);
        hide(3);
        hide(1);
        show(4);
      })
          .end();

  function hide(id) {
    $("#submenu"+id).fadeTo("quick",0.0);
    $("#logo"+id).fadeTo("quick",0.0);
    document.getElementById('submenu'+id).style.display='none';
  }

  function show(id) {
    $("#submenu"+id).fadeTo("quick",1.0);
    $("#logo"+id).fadeTo("quick", 1.0);
    document.getElementById('submenu'+id).style.display='block';
  }

});
