$(document).ready(function() {
	
	/*$('.cliquable').each(function(){
		var link = $(this).find("a").attr("href");
		
		if(typeof(link) == 'undefined'){
			$(this).removeClass("cliquable");
		}
		else{
			$(this).click(function(){
				window.location = link;
				return false;
			});
		}
	});*/
	
        // Replaces all the matching elements with a <a href="mailto:..> tag.
	$('span.mailme').mailme();

	$('.cliquable').click(function(){
		window.location=$(this).find("a").attr("href");	
		return false;
	});
	
	//Diaporama
	$('ul#slide_metiers').innerfade({
					speed: 'slow',
					timeout: 2000,
					type: 'sequence'
					//containerheight: '220px'
	});
	
});
