$(document).ready(function(){
	
	/* Activate if site has PNG's
	$("#content").pngFix(); 
	*/
	
	/*Activate if site has search
	$('#search').emptyonclick();
	*/
	
	
	/*Activate if site has tag search
	$("#search").autocomplete("/ajax/autocompleter_tags.php", {
		width: 260,
		selectFirst: false
	});
	*/
	
	equalHeight($(".suboverview"));
	
});


function equalHeight(group) {
    var tallest = 0;
    group.each(function() {
        var thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}

