(function($){
	$(document).ready(function() {
		$('input.autoClear').focus(function() {
			if ( !$(this).attr('cleared')) {
				$(this).val('');
				$(this).attr('cleared', true);
			}
		});
		
		$('#more_infos_unfold').hide();
		
		$('#legend_more_infos').click(function(){
			$('#more_infos_unfold').show(600);
			$('#legend_more_infos').hide();
			$('#legend_less_infos').show();
			return false;
		});
		
		$('#legend_less_infos').click(function(){
			$('#more_infos_unfold').hide(600);
			$('#legend_less_infos').hide();
			$('#legend_more_infos').show();
			return false;
		});
		
		$('#menu > ul > li').mouseenter(function(){
			
		}).mouseleave(function(){
			
		});
	});
})(jQuery);
