Is there a way to make my sidebar cover the full height of the screen without using position: fixed? The code I've tried doesn't seem quite right. Any tips?
JSFindle: http://jsfiddle.net/Pw4FN/57/
if($(window).height() > $('#page-container').height()){
$('#menu').css("min-height", $(window).height());
}else{
$('#menu').css("min-height", $('#page-container').height());
}