// Base Scripts for ALL pages
function equalHeight(group) {
    var tallest = 0;
    group.each(function() {
        var thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}
$(document).ready(function() {
    equalHeight($("#content-wrapper, #content"));
	$('#fontsizer').jfontsizer({
    	applyTo: '#column',
   		changesmall: '2',
    	changelarge: '2',
    	expire: 30
	});
	
	$("#tabbed-panel").tabs();
	
});