You could use position: absolute
following to put the footer at the bottom of the page, but then make sure your 2 columns have the appropriate margin-bottom
so that they never get occluded by the footer.
#footer {
position: absolute;
bottom: 0px;
width: 100%;
}
#content, #sidebar {
margin-bottom: 5em;
}