// SDCo General Actions
$(document).ready(function() {

	function checkHeight () {
    if ($(window).height() > 610) {
        $('#sidebar_latest_container').show();
        }
    else {
        $('#sidebar_latest_container').hide();
        }
    }
	
	// check the window size when page loads
    checkHeight();
 
    // check on resize
    $(window).resize(function() {
        checkHeight();
    });
	
});
