

$(function(){

	function closeDelay(selector){
		$(selector).delay(2000).slideUp('slow');
	}
	closeDelay('.notify');
	
	$("#search_form")
	.val('Rechercher')
	.focus(function(){if($(this).val()=='Rechercher') $(this).val('');})
	.blur(function(){if($(this).val()=='') $(this).val('Rechercher');})
	.keydown(function(e){
		var code = (e.keyCode ? e.keyCode : e.which);
		if (code == 13) {
			var url = 'recherche.php?hl=fr&lr=lang_fr&q=' + $(this).val();	
			window.location.href= url;//redirection
		}
	});
	
	
	$('img.legende').legende('legende_get.pp');
	
	$('body').snowfall({
		flakeCount : 100,
		minSize:2,
		maxSize:4,
		round:true
	});
});
