// JavaScript Document


$(document).ready(function(){
	
	
	// SEARCH
	$("#header input#search").feed_input();
	
	// MENU LANGUES
	$("#header li.langues div#langue")
	.mouseover(function(){
		$("div#langues").show();
	})
	.mouseout(function(){
		$("div#langues").hide();
	});
	$("div#langues")
	.css("display","none")
	.css("visibility","visible")
	.mouseover(function(){
		$(this).show();
	})
	.mouseout(function(){
		$(this).hide();
	});
	
	// FIN MENU LANGUES
});
