
	
function typoplus(){
	
	if ($("bloc_col_centre")!=null){
		
		enfants=$("bloc_col_centre") ;

	}
	
	if ($("bloc_col_centre_home")!=null) {
	
		enfants=$("bloc_col_centre_home");

	}
	
	if ($("bloc_contenu_generic")!=null){
		
		enfants=$("bloc_contenu_generic") ;

	}
	
	if ($("article_centre")!=null){
		
		enfants=$("article_centre") ;

	}	
	
	tableaux=document.getElementsByClassName("tab");
	
	if (tableaux.length>=1){
		for(nb=0;tableaux.length>nb;nb++){
			tableaux[nb].removeClassName('typo_tab');		
			tableaux[nb].addClassName('typo_plus');
		}
	}

	try {
	enfants.addClassName('typo_plus');
	} catch(e){}

}
				
function typomoins(){

	tableaux=document.getElementsByClassName("tab");
	
	if (tableaux.length>=1){
		for(nb=0;tableaux.length>nb;nb++){
			tableaux[nb].removeClassName('typo_plus');		
			tableaux[nb].addClassName('typo_tab');
		}
	}


	blocs=document.getElementsByClassName("typo_plus");
	
	if (blocs.length>=1){
		
		for(nb=0;blocs.length>nb;nb++){

			blocs[nb].removeClassName('typo_plus');

		}

	}

}



