$(document).ready(function(){var size=$.cookie('DGZ_fontsize');$('.resizable').css('font-size',size);if(size=="20px"){$('#fontSizeIcon').attr('src','/images/ico_aMinus.png')}if(size=="11px"){$('#fontSizeIcon').attr('src','/images/ico_aPlus.png')}$("#sizer").click(function(){var currentFontSize=$('.resizable').css('font-size');var newFontSize="20px";var newLineHeight="25px;";if(currentFontSize=="11px"){newFontSize="20px";var newLineHeight="25px";$('#fontSizeIcon').attr('src','/images/ico_aMinus.png')}if(currentFontSize=="20px"){newFontSize="11px";var newLineHeight="16px";$('#fontSizeIcon').attr('src','/images/ico_aPlus.png')}$('.resizable').css('font-size',newFontSize);$('.resizable').css('line-height',newLineHeight);$.cookie('DGZ_fontsize',newFontSize,{path:'/'});return false})});
