$(window).load(function(){
	$('#menu #widgets').mouseover(function(){
		$(this).addClass('hover');
	}).mouseout(function(){
		$(this).removeClass('hover');
	});
	$('#s').val('Rechercher').focus(function(){
		if($(this).val()=='Rechercher') {
			$(this).val('');
		}
	}).focusout(function(){
		if($(this).val()=='') {
			$(this).val('Rechercher');
		}
	});
	$('a[href^="http:"]:not([href*="'+window.location.host+'"])').each(function(){$(this).attr('target','_blank');});
});
