Cufon.replace('.ebrima', {fontFamily: 'ebrima'})

 
		$(function() {
		var test = $(document).height(); 
		var test2 = $(window).height();
		//alert (test);
		//alert (test2);
		if ((test2 - test) >= 0 ){
			//alert('1');
			var total = test - 25;
			$(".footer").css({
			top: total + "px"
			});
		}else{
			//alert('2');
			var total = test;
			$(".footer").css({
			top: total + "px"
			});
		}
	});
		
