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($("footer .cols"));
});


$(document).ready(function() {
    $('#slider').nivoSlider({    
                effect:'fade',
                animSpeed:1500,
                pauseTime:5000,
                startSlide:2,
                directionNav:false,
                controlNav:true,
                keyboardNav:false,
                pauseOnHover:false,
                directionNav:true, //Next & Prev
                directionNavHide:true, //Only show on hover
    });    
});




















