$(document).ready(function() { init(); });

//---------------------------------- init -----------------------------------------------------------------------------------

function init() {
	//Selectionne le menu courant
	selectMenuItem(menuItemSelected);
	//initNavEffect();
	
	// http://www.html-advisor.com/javascript/hide-email-with-javascript-jquery/
	var at = / at /;
	var dot = / dot /g;
	$('span.mailme').each(function () {
		var addr = $(this).text().replace(at,"@").replace(dot,".");
		$(this).after('<a href="mailto:'+ addr +'" title="Send an email">'+ addr +'</a>');
		$(this).remove();
	});
	
	$("#reachTopOfPage").click(function () {
		$('body').scrollTo( 0, 800); return false;
	});
	
}

//Selectionne le(s) menu(s) courant(s)
function selectMenuItem(menuItem_array) {
	for (var i=0; i<menuItem_array.length ; i++) {
		$("#"+menuItem_array[i]).addClass('activeItem');
	}
}
