Cufon.replace('h1', {
	color: '#FFFFFF'
});



$(document).ready(function(){
						   
  // Reset Font Size
  var originalFontSize = $('html').css('font-size');
	  $(".medium").click(function(){
	  $('html').css('font-size', originalFontSize);
  });
  
  // Increase Font Size
  $(".large").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
  $(".small").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;
  });
  
});