﻿$(document).ready(function(){
  	$("#txts").click(function(){
  $("p").animate({fontSize:"0.7em"},"slow");
  $("a").animate({fontSize:"0.7em"},"slow");
  $("td").animate({fontSize:"0.7em"},"slow");
  $("th").animate({fontSize:"0.7em"},"slow");

  });
  	$("#txtm").click(function(){
  $("p").animate({fontSize:"1em"},"slow");
  $("a").animate({fontSize:"1em"},"slow");
  $("td").animate({fontSize:"1em"},"slow");
  $("th").animate({fontSize:"1em"},"slow");

  });
  	$("#txtl").click(function(){
  $("p").animate({fontSize:"1.3em"},"slow");
  $("a").animate({fontSize:"1.3em"},"slow");
  $("td").animate({fontSize:"1.3em"},"slow");
  $("th").animate({fontSize:"1.3em"},"slow");


  });

});

