// JavaScript Document
$(document).ready(function(){
	//hover btn moteur recherche
	$("input#btn_trouver").css('background','url(images/btn_search.png) no-repeat left top');
	$("#btn_trouver").hover(function(){
		$(this).css('background','url(images/btn_search.png) no-repeat left bottom');
	});
	$("#btn_trouver").mouseleave(function(){
		$(this).css('background','url(images/btn_search.png) no-repeat left top');
	});
	
	//hover social bookmark
	$("#social_bookmark a").stop().mouseover(function() {
			$(this).stop().animate({bottom: 15}, "fast");
		});
		$("#social_bookmark a").stop().mouseout(function() {
			$(this).stop().animate({bottom: 0}, "fast");
		});

});
