$(document).ready(function(){
  // Reset Font Size
  /*
  var originalFontSize = $('html').css('font-size');
    $(".resetFont").click(function(){
    $('html').css('font-size', originalFontSize);
  });
  */
  	// Increase Font Size
	$("#fsIncrease").click(function(){
		var currentFontSize = $('html').css('font-size');
		var currentFontSizeNum = parseFloat(currentFontSize, 10);
		var newFontSize = currentFontSizeNum*1.2;
		$('html').css('font-size', newFontSize);
		return false;
	});
	
	
	// Decrease Font Size
	$("#fsDecrease").click(function(){
		var currentFontSize = $('html').css('font-size');
		var currentFontSizeNum = parseFloat(currentFontSize, 10);
		var newFontSize = currentFontSizeNum*0.8;
		$('html').css('font-size', newFontSize);
		return false;
	});
	
	
	// Switch to Hight Contrast
	$('#fsContrast').toggle(function(){
		$('html').addClass('hc');
		$(this).find('img').attr('src', '/lib/yhst-56753212187465/uc6.jpg');
	}, function(){
		$('html').removeClass('hc');
		$(this).find('img').attr('src', '/lib/yhst-56753212187465/uc4.jpg');
	});
	
	
});
