if($(document.body).height() < $(window).height()){
$("#footer").css({position:'fixed',bottom:0,'100%'});
}
$(window).resize(function() {
if($(document.body).height() < $(window).height()){
$("#footer").css({position:'fixed',bottom:0,'100%'});
}else{
$("#footer").css({position:'relative'});
}
});