jQuery(function ($) {

	var top = $("#nav").css("height");
	$("#nav a").hover(
      function () {
      	if($(this).hasClass("on"))$(this).removeClass('on');
      	else $(this).addClass('on');
      	//alert("coucou");
      	//$(this).css({top : '-' + top});
      }, 
      function () {
      	if($(this).hasClass("on"))$(this).removeClass('on');
      	else $(this).addClass('on');
      	//$(this).css("opacity", 0.8);
      	//$(this).css({top : '0'});
      }
    );	
});

