// Enlarge fonts
$(document).ready(function(){

  // Reset original size
  var originalFontSize = $('html').css('font-size');
  $(".normal").click(function(){
  $('html').css('font-size', originalFontSize);
  });

  // Set XL size
  $(".large").click(function(){
  	var currentFontSize = $('html').css('font-size');
 	var currentFontSizeNum = parseFloat(currentFontSize, 10);
    var newFontSize = '18px';
	$('html').css('font-size', newFontSize);
	return false;
  });

  // Set XXL size
  $(".xlarge").click(function(){
  	var currentFontSize = $('html').css('font-size');
 	var currentFontSizeNum = parseFloat(currentFontSize, 10);
    var newFontSize = '21px';
	$('html').css('font-size', newFontSize);
	return false;
  });
});

// Set focus on search form input field
function setFocus() {
	document.searchform.searchstring.focus()
}

// Submit serach form on enter key
$(document).ready(function() {
	$('input').keydown(function(e) {
		if (e.keyCode == 13) {
			$(this).parents('form').submit();
			return false;
		}
	});
});
