$(document).ready(function(){
var $winWidth = $(window).width();
if($winWidth > 757) {
$("#sidebar").css("height", $(".post").height());
}
;})
function fixSize(){
if($(window).width() > 757) {
$('#sidebar').css({
'height': $(".post").height()
});
} else [
$('#sidebar').css({
'height': 'auto'
});
}
}
$(window).resize(fixSize);
fixSize();