//Fit Facts
$(function() {
	$('#fit-facts').cycle({
		fx:     'scrollVert',
		timeout: 5000,
		speed: 1000
	});
	
});

//Equal Heights
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($(".equalize"));
//});

Cufon.replace('h2', { hover: true });

