
var originalFontSize = $('html').css('font-size');
var originalFontSizeNum = parseFloat(originalFontSize, 10);
var currentFontSize = $('html').css('font-size');  

function SmallText()
  {
  var newFontSize = originalFontSizeNum*0.8;
  $('html').css('font-size', newFontSize);
  $('#HeaderLinks').find('ul').css('margin', '20px 10px 0px 240px');
  }
  
function LargeText()
  {
  var newFontSize = originalFontSizeNum*1.2;
  $('html').css('font-size', newFontSize);
  //homepage specific work arounds
  $('#HeaderLinks').find('ul').css('margin', '20px 10px 0px 130px');
  $('.RedBtnLink').css('padding', '5px 0px 7px 25px;');
  $('.RedBtnLink').css('background', 'url(images/contactsaleslarge.jpg) no-repeat')
  $('.RedBtnLink').css('width', '151')
  //inner page specific work arounds
  $('#AquaText').css('height', 'auto');
  $("#InnerQuickLinks").find("a").each(function(i){$(this).css('height', 'auto')})
  }
  
function ResetText()
  {
  $('html').css('font-size', originalFontSize);
  $('#AquaText').css('height', '126px');
  $('#HeaderLinks').find('ul').css('margin', '20px 10px 0px 190px');
  $('.RedBtnLink').css('background', 'url(images/contactsales.jpg) no-repeat')
  $('.RedBtnLink').css('width', '90')
  $('.RedBtnLink').css('padding', '3px 15px 5px 15px;');
  }

function clearForm(inp)
  {
  inp.value = "";
  //alert('hello');
  }

