$(function() {
	$('#login-form input.submit').hover(function() {
		$(this).addClass('hovered');
	}, function() {
		$(this).removeClass('hovered');
	});
	
	$('div.search-form input.submit').hover(function() {
		$(this).addClass('hovered');
	}, function() {
		$(this).removeClass('hovered');
	});
	
	$('#login-form .input, div.search-form .input').focus(function(){
		$(this).val("");
	});
		
	$('div.search-form .input').blur(function(){
	 if($(this).val() == ""){
		  $(this).val('Effectuer une recherche');
		}
	});
	
});
