/*
 * Schriftgröße
 */

var container = "body";

$(document).ready(function(){
	
  // Schrift normal
  $(".standard").click(function() { $(container).css('font-size', 14); });

  // Schrift gross
  $(".gross").click(function() { $(container).css('font-size', 18); });

});
