/*var vH = 0;
$(document).ready(function(){
    setHeight();
});
function setHeight(){
    var Height = 0;
    if (vH > 0 && $("#contents")) {
        $("#contents").css("height", ($("#contents").height() + vH));
    }
    H = $("#contents").height()+95;
    $("#contents").css("height", H);
    
    if($("#contents").height() < $(window).height())
    {
        $("#footer").css("bottom", 0);
    }else{
        $("#footer").css("top", H);    
    }
    $("#footer").css("display", "block");
}*/
