/*
	Copyright Code Computerlove Ltd 2007-2012
	Build: 7.0.680.999
	Date: 24/01/2012 18:40:27
*/


$(document).ready(function(){var originalFontSize=$('html').css('font-size');$(".resetFont").click(function(){$('html').css('font-size',originalFontSize);});$("a.increaseFont").click(function(){var currentFontSize=$('html').css('font-size');var currentFontSizeNum=parseFloat(currentFontSize,10);var newFontSize=currentFontSizeNum*1.2;$('html').css('font-size',newFontSize);return false;});$("a.decreaseFont").click(function(){var currentFontSize=$('html').css('font-size');var currentFontSizeNum=parseFloat(currentFontSize,10);var newFontSize=currentFontSizeNum*0.8;$('html').css('font-size',newFontSize);return false;});});

