// JavaScript Document

///////////////////////////
//
// Taille Police
//
///////////////////////////

function taille_police(){
	
	/* création d'une référence vers l'objet courant */
	var obj = this;  
	
	/* taille police */
	this.taille = 100;
	this.max_taille = 130 ;
	this.min_taille = 70 ;
	
	this.reduireTypo = function( value ){
		if ( this.taille > this.min_taille ) {
			document.body.style.fontSize = ( this.taille - value ) +"%" ;
			this.taille -= value ;
		}
	}
	
	this.augmenteTypo = function( value ){
		if ( this.taille < this.max_taille ) {
			document.body.style.fontSize = ( this.taille + value ) +"%" ;
			this.taille += value ;
		}
	}
	
}
