
//window.addEvent('domready', init() );
window.onload = function() { init(); }

//---------------------------------- init -----------------------------------------------------------------------------------

function init() {
	//Selectionne le menu courant
	selectMenuItem(menuItemSelected);
	
	initSearchInput();
	
	// 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();
	});
	
	//
	
	$("#translate-btn").click(function () {
		  $("#translate-content").slideToggle("slow");
	});

	//Detection google translate
	if (top.location != self.document.location) {
		$("#mission-content").css("display","block");
		$("#objectives-content").css("display","block");
	}

}

//Selectionne le menu courant et le rend visible en affichant tous les container parents
function selectMenuItem(menuItem_p) {
	//Selectionne le menu courant
	if (menuItem_p) { $("#"+menuItem_p).addClass('activeItem'); }
}
	
function initSearchInput() {
	//Ajoute l interactivite
	$("#searchQuery").focus(function () {
		if( $('#searchQuery').val()=="Search..." ) {
			$('#searchQuery').val("");
		}
		
		$('#searchQuery').animate({ 
			width: "300px"
		  }, 500 );

	});

}

function toogleUpdates() {
/*	$('body').scrollTo('.updated');*/

//	$('.updated').addClass('highlighted');
	
//	$("p.neat").addClass("ohmy").show("slow");
	
	
//	var p = $("span.updated:first");
//alert(p.scrollTop());
//$("p:last").text( "scrollTop:" + p.scrollTop() );

}
