//PLF- http://www.jejavascript.net/
var cheminImage = "images/evenements/ev_acta_avr_05.jpg"; //image
var lienpopup = "http://www.association-acta.org";
monImage = new Image;
monImage.src = cheminImage;
var taillebg = monImage.width //largeur popup
var invtaillebg = (-taillebg)
taillebg = taillebg +5
var position_x = invtaillebg
var fermeture=0
var position_y = 0//(screen.height-monImage.height-10)/2 //(hauteur ecran - hauteur image)/2
function ouvrir_menu()
{ 
if (fermeture==1) {window.clearTimeout(deactiv_pop);}
document.getElementById("menu_context").style.top = position_y;
document.getElementById("menu_context").style.left = position_x;

if (position_x < 10 ) {
position_x++;
activ_pop = setTimeout("ouvrir_menu()",10);
}
else {
deactiv_pop = setTimeout("fermer_menu()",10000);
}
}

function fermer_menu()
{
fermeture=1
window.clearTimeout(activ_pop);
document.getElementById("menu_context").style.top = position_y;
document.getElementById("menu_context").style.left = position_x;
if (position_x > invtaillebg-6 ) {

position_x=position_x-2;
deactiv_pop = setTimeout("fermer_menu()",5);
}
else {
activ_pop = setTimeout("ouvrir_menu()",20000)
}
}
window.onload = ouvrir_menu;


