function loadBackground( imageURL ) {
	$('#background').css( { backgroundImage: "url( "+imageURL+" )" } );
}


function adjustBackgroundSize() {
	
	$('#background').height( '100%' );
	if ( $('#background').height() <= $('#contentRight').height() ) {
		$('#background').height( $('#contentRight').height() + 20 );
	}
	
}

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

$(window).bind('resize', function() {
    adjustBackgroundSize(); 
});
