//HEIGHTCOLEQUAL
function equalHeight(group) {
  tallest = 0;
  group.each(function() {
              thisHeight = $(this).height();
              if(thisHeight > tallest) {
                          tallest = thisHeight;
              }
  });
  group.height(tallest);
}
$(document).ready(function() {
equalHeight($(".blockwidgetcontent"));
equalHeight($(".blockwidgetfooter"));
});


//TABLESORTER
$(document).ready(function() 
    { 
     $("table").tablesorter( {headers: { 0: { sorter: false }}, widgets: ['zebra'] } );
    } 
);

//MENU
<!--//--><![CDATA[//><!--

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]>
