function getNumber(type){

	$.ajax({
	type:"POST",
	url:"http://www.kriisiis.fr/wp-content/themes/KriisiisV3/get.php",
	data:"type=" + type,
	success:function(response){
		
		$("#number_" + type).text(response);
		
		if(type == "viadeo" || type == "fans" || type == "rel" || type == "feed" || type == "twitter"){
		
			add2Total(response);
	
		}
	
	}
	});

}

function add2Total(nb){

	var total = $("#number_total").text().replace(".","");

	if(total == ".."){
		
		total = 0;
		
	}else{
		
		total = parseInt(total);
		
	}
	
	$("#number_total").text(total + parseInt(nb));

}

$(document).ready(function(){

	getNumber("articles");
	getNumber("comments");
	getNumber("retro");
	getNumber("twitter");
	getNumber("feed");
	getNumber("rel");
	getNumber("fans");
	getNumber("viadeo");
	
	add2Total(501 + 419 + 221 + 572 + 4195);
	
});
