$(document).ready( function() {

    $("#nav ul li[class!=active]:has(ul)").hover(
      function () {
        $("#nav ul li.active ul").hide();
      }, 
      function () {
        $("#nav ul li.active ul").show();
      }
    );
    
    /* Formation */
    $('form.formation input[type="text"],form.formation textarea').click(function(){
    	$(this).attr('value','');
    });
    
    

/*
var path = location.pathname.substring(location.pathname.lastIndexOf("/") + 1);
		if (path == '') path = 'index.htm';
		 $('#nav a[href$="' + path + '"]').parent().addClass('active'); 

		$(function(){
			var spt = $('span.mailme');
			var at = / at /;
			var dot = / dot /g;
			var addr = $(spt).text().replace(at,"@").replace(dot,".");
			$(spt).after('<a href="mailto:'+addr+'" title="Send an email">'+ addr +'</a>')
			.hover(function(){window.status="Send a letter!";}, function(){window.status="";});
			$(spt).remove();
		});
		*/
});

