$(document).ready(function(){	

	var code = '<img src="img/loader.gif" style="vertical-align: middle;" height="20px" width="20px" />';
	
	var puce_bleue = '<img src="img/puce.png" style="vertical-align: middle;"/>';
	var puce_verte = '<img src="img/puce2.png" style="vertical-align: middle;"/>';

	
	$('#num1').click(function() {
		$('#puce_num1').html(code).removeAttr("id");
	});
	$('#num1').hover(function(){
		$('#puce_num1').html(puce_verte);
	},function(){
		$('#puce_num1').html(puce_bleue);
	});
	
	$('#num2').click(function() {
		$('#puce_num2').html(code).removeAttr("id");
	});
	$('#num2').hover(function(){
		$('#puce_num2').html(puce_verte);
	},function(){
		$('#puce_num2').html(puce_bleue);
	});
	
	$('#num3').click(function() {
		$('#puce_num3').html(code).removeAttr("id");
	});
	$('#num3').hover(function(){
		$('#puce_num3').html(puce_verte);
	},function(){
		$('#puce_num3').html(puce_bleue);
	});
	
	$('#num4').click(function() {
		$('#puce_num4').html(code).removeAttr("id");
	});
	$('#num4').hover(function(){
		$('#puce_num4').html(puce_verte);
	},function(){
		$('#puce_num4').html(puce_bleue);
	});
	
	$('#num5').click(function() {
		$('#puce_num5').html(code).removeAttr("id");
	});
	$('#num5').hover(function(){
		$('#puce_num5').html(puce_verte);
	},function(){
		$('#puce_num5').html(puce_bleue);
	});
	
	$('#num6').click(function() {
		$('#puce_num6').html(code).removeAttr("id");
	});
	$('#num6').hover(function(){
		$('#puce_num6').html(puce_verte);
	},function(){
		$('#puce_num6').html(puce_bleue);
	});
	
	$('#num7').click(function() {
		$('#puce_num7').html(code).removeAttr("id");
	});
	$('#num7').hover(function(){
		$('#puce_num7').html(puce_verte);
	},function(){
		$('#puce_num7').html(puce_bleue);
	});
	
});
