$(document).ready(function () { 
	$("a.blague_vote").click(function() {
		$(this).attr("href", function(){
			mylink=this.href.replace("voter", "voter_jquery"); 
			$(this).attr("href", mylink );
		});
		$("#"+this.name).load(this.href);
		return false;
	});
	$("a.blague_detail").click(function() {
		$("#"+this.name).show("normal");
		return false;
	});
	$("#menu_accueil").mouseover(function(){
		$(this).animate({marginTop:"4px",height:"18px"}, { queue:false, duration:100 });
	});
	$("#menu_accueil").mouseout(function(){
		$(this).animate({marginTop:"1px",height:"21px"}, { queue:false, duration:100 });
	});
	$(".menu_fond").mouseover(function(){
		$(this).addClass("menu_fond_select");
		$(this).animate({marginTop:"0"}, { queue:false, duration:100 });
	});
	$(".menu_fond").mouseout(function(){
		$(this).removeClass("menu_fond_select");
		$(this).animate({marginTop:"4px"}, { queue:false, duration:100 });
	});
	$(".menu_fond_select").mouseover(function(){
		$(this).animate({marginTop:"0"}, { queue:false, duration:100 });
	});
	$(".menu_fond_select").mouseout(function(){
		$(this).animate({marginTop:"4px"}, { queue:false, duration:100 });
	});
});