/**Highlight***/function highlightpage(){	if(!document.getElementsByTagName) return false;	if(!document.getElementById) return false;	if(!document.getElementById("gb-navi-page")) return false;	var nav = document.getElementById("gb-navi-page");	var links = nav.getElementsByTagName("a");		for(var i=0; i<links.length; i++){            var linkurl = links[i].getAttribute("href");	    var currenturl = window.location.href;		if(currenturl.indexOf(linkurl) != -1){		 links[i].className = "active";				}	}}if(window.addEventListener) {	window.addEventListener("load", highlightpage, false);}else if(window.attachEvent) {	window.attachEvent("onload", highlightpage);}/**JQuery tools tabs sort***/$(function() {	$("ul.entry-sort-tabs").tabs("div.entry-sort-panes-widget > div.entry-sort-panes-widget-content");});/**JQuery tools tabs recent***/$(function() {	$("ul.recent-tabs").tabs("div.recent-panes-widget > div.recent-panes-widget-content");});$("#wheeled").scrollable().mousewheel();$(function() {    $("div#widget-tab-recent div.scrollable").scrollable({         vertical:true,        size: 2     }).mousewheel();});
