

jQuery(document).ready(function($) {

	initTextSize();

	function initTextSize()
	{
		
		$( ".textUp" ).click( textSizeIncrement ) ;
		$( ".textDown" ).click( textSizeDecrement );	
	}

	
	function textSizeIncrement()
	{
		$(".textUp").removeClass('icon-enabled');
		$(".textDown").addClass('icon-enabled');
		$(".content").css('font-size', "150%");	
	}
	
	function textSizeDecrement()
	{
		$(".textDown").removeClass('icon-enabled');
		$(".textUp").addClass('icon-enabled');
		$(".content").css('font-size', "100%");
	}
	






});






