$(function() {
    if(window) {
        $(window).load(function() {
            $('#sidebar_left').height(  $('#content').height() );
            
        	$('#sidebar_left').height( $('#sidebar_left').height() - 15 );
        	
        	if( $('#sidebar_left').height() > $('#expander').height() && $.browser.msie ) {
                $('#sidebar_left').height( $('#sidebar_left').height() - 11 );
        	}
        });
    }
});