jQuery(document).ready(function($){
	var contentHeight =  $("#main").height() + 50 + "px";
	document.getElementById('background-element').style.height = contentHeight; // Set background element div to same height as content ('#main' div + 50px).	
});

