function alignLeftBar() 
{
	
	// bal oldali sidebar 100% magasság
	if( $('#content_container').height() > $('#left_content').height() )
		$('#left_content').height( $('#content_container').height() );
	
	// tartalom középre igazítás
	if( $(window).height() > $('#wrapper').height() )
		$('#wrapper').css( 'margin-top', ($(window).height()-$('#wrapper').height())/2 );
	$(window).resize(function() {
		if( $(window).height() > $('#wrapper').height() )
			$('#wrapper').css( 'margin-top', ($(window).height()-$('#wrapper').height())/2 );
	});
	
}

$(document).ready(function() {
    alignLeftBar();
});

