function twoDigits(value) { if(value < 10) { return '0' + value; } return value; } $(document).ready(function() { // Scroll to top $(window).scroll(function() { if ($(this).scrollTop() > 100) { $('.scrollup').fadeIn(); } else { $('.scrollup').fadeOut(); } }); $('.scrollup').click(function() { $("html, body").animate({ scrollTop: 0 }, 600); return false; }); // Back buttons $('#historyback, .historyback').click(function() { parent.history.back(); return false; }); // Load Newsfeed var ajax_load = "
Loading newsfeed...
"; var url = ""; if (typeof $("#newsfeed").data("url") !== "undefined") { url = "&url=" + $("#newsfeed").data("url"); } $("#newsfeeditems").html(ajax_load).load("lib/ajax.php?action=newsfeed" + url, function() { if ($("#newsfeeditems").html().length > 0) { $(window).trigger('resize'); $("#newsfeed").slideDown(); } }); // Enable Infobubbles $(".tipper").tipper({ direction: "right" }); // Enable reset search click $(".resetsearch").click(function() { $(".searchtext").val(""); $(".submitsearch").click(); }); // Height of divs fix var snheight = $('#sidenavigation').height(); var mainheight = $('#maincontent').height(); if (snheight > mainheight) { $('#maincontent').height(snheight); } // this is necessary for the special setting feature (ref #1010) $.getQueryVariable = function(key) { var urlParams = decodeURI( window.location.search.substring(1) ); if(urlParams === false | urlParams === '') return null; var vars = urlParams.split("&"); for (var i=0;i