$(window).bind('load', function () {


// image overfx
  $('div.fade').hover(function() {
    $(this).css('cursor', 'auto');
    if ($(this).children('img').not(':animated')) { $(this).children('img').fadeIn(200) }
    $(this).children('img').animate({ opacity:1 }, 200)
  }, function() {
    $(this).children('img').stop().animate({ opacity:0 }, 400);
  })
    
  // delay plugin
  $.fn.delay = function(time, callback){
    var $time = this;
    setTimeout(function(){ callback.call($time) }, time);
    return $time;
  }
  
});

function acces_autorise() {
	$('#code_acces').fadeIn(1000);
	$('#administration').click(function(){ document.identification_administrateur.submit() });
}

function acces_refuse() {
	$('#code_acces').fadeOut(1000);
}
