$(document).ready(function(){

$('#upsize img').click(function() {
	$('div.texte *').each(function(){
		var t=$(this).css("font-size");
		if(t){
			t=parseFloat(t);
			t=t+1;
			$(this).css("font-size",t+"px");
		}
	});
	$('div.texte span').each(function(){
		var t=$(this).attr('style','font-size');
		if(t){
			t=parseFloat(t);
			t=t+1;
			$(this).attr('style','font-size:'+t+'px');
		}
	});
	$('.descimg *').each(function(){
		var t=$(this).css("font-size");
		if(t){
			t=parseFloat(t);
			t=t+1;
			$(this).css("font-size",t+"px");
		}
	});
	return false;
});
$('#downsize').click(function(){
	$('div.texte *').each(function(){
		var t=$(this).css("font-size");
		if(t){
			t=parseFloat(t);
			t=t-1;
			$(this).css("font-size",t+"px");
		}
	});
	$('div.texte span').each(function(){
		var t=$(this).attr('style','font-size');
		if(t){
			t=parseFloat(t);
			t=t-1;
			$(this).attr('style','font-size:'+t+'px');
		}
	});
	$('.descimg *').each(function(){
		var t=$(this).css("font-size");
		if(t){
			t=parseFloat(t);
			t=t-1;
			$(this).css("font-size",t+"px");
		}
	});
	return false;
});

});
