﻿// JavaScript Document

$(document).ready(function(){
  // Reset Font Size
  var originalFontSize = $('html').css('font-size');
  var originalFontSizeNum = parseFloat(originalFontSize, 10);
  var bigFontSize = originalFontSizeNum*1.2;
  var biggerFontSize = originalFontSizeNum*1.3;
    $(".link-normal-text").click(function(){
    $('html').css('font-size', originalFontSize);
  });
  // Increase Font Size
  $(".link-big-text").click(function(){
    $('html').css('font-size', bigFontSize);
  });
  // Decrease Font Size
  $(".link-bigger-text").click(function(){
    $('html').css('font-size', biggerFontSize);
  });
  // Gallery
  $("a.gallery").fancybox();
  $("#gmaps").fancybox({
		'width'				: '75%',
		'height'			: '75%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
});
