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



$(document).ready(function() {

$('#footer').css('visibility', 'visible');

if ($(document).height() < 800){
	$('#footer').css('top', 800);
}else{
	$('#footer').css('top', $(document).height()+200);
}

});
	

