$(document).ready(function(){
	$("#content .triple_bulle .left").hover(
		function(){
			$(this).parent().addClass("hover1");
		},function(){
			$(this).parent().removeClass("hover1");
		}
	);
	$("#content .triple_bulle .right").hover(
		function(){
			$(this).parent().addClass("hover2");
		},function(){
			$(this).parent().removeClass("hover2");
		}
	);
	$("#content .triple_bulle .bottom").hover(
		function(){
			$(this).parent().addClass("hover3");
		},function(){
			$(this).parent().removeClass("hover3");
		}
	);
});