﻿var sitefunctions = { textresize: function() { var d = "dius-FontSize"; var e = $("html").css("font-size"); if ($.cookie(d)) { var f = $.cookie(d); $("html").css({ fontSize: f + (f.indexOf("px") != -1 ? "" : "px") }) } else { $.cookie(d, e) } $(".increase").bind("click", function() { var a = $("html").css("font-size"); var b = parseFloat(a, 10); var c = b + 2; $("html").css("font-size", c); $.cookie(d, c); return false }); $(".decrease").bind("click", function() { var a = $("html").css("font-size"); var b = parseFloat(a, 10); var c = b - 2; $("html").css("font-size", c); $.cookie(d, c); return false }) } }

