// Cufon
Cufon.replace('h2');
Cufon.replace('h4');

// Cycle
$(function() {
$('#featured').cycle({
	fx:    'fade', 
	speed:  4000
});

// Equal height columns	
$('#main_container').equalHeights();
});

$(function(){
	positionFooter(); 
	function positionFooter(){
		if($(document.body).height() < $(window).height()){
			$("#footer").css({position: "absolute",top:($(window).scrollTop()+$(window).height()-$("#footer").height())+"px"})
		}	
	}
 
	$(window)
		.scroll(positionFooter)
		.resize(positionFooter)
});