(function($) { 
	$(document).ready(function(){
	  // Reset Font Size
	  var originalFontSize = '11px';
	    $(".resetFont").click(function(){
	    $('html').css('font-size', originalFontSize);	    
	  });	
		var step = 0;
	  // Increase Font Size
	  $(".increaseFont").click(function(){
		var currentFontSize = $('html').css('font-size');
		if (step == 0){
			currentFontSize = '11px';
		};
	    	var currentFontSizeNum = parseFloat(currentFontSize, 12);
	    var newFontSize = currentFontSizeNum+2;
	    $('html').css('font-size', newFontSize);
	  // CUSTOM STYLES TO ENSURE NAVIGATION REMAINS FUNCTIONAL
		step = (step+1);
		//$('#PrimaryNav').css('width', '965px');	
		//$('#PrimaryNav').css('background-color', '#403985');		
	    return false;
	  });
	  // Decrease Font Size
	  $(".decreaseFont").click(function(){
	    var currentFontSize = $('html').css('font-size');
	    var currentFontSizeNum = parseFloat(currentFontSize, 12);
	    var newFontSize = currentFontSizeNum-2;
	    $('html').css('font-size', newFontSize);
			step = (step-1);
			if (step ==0){
				$('#PrimaryNav').css('width', '600px');	
				$('#PrimaryNav').css('background-color', '');
				}					
	    return false;
	  });
	});
})(jQuery);
