var checkBooking = function () {
	sb = document.getElementById("sidebar");
	con = document.getElementById("content");
	
	sb.style.height = con.offsetHeight;
}

window.onload = checkBooking;

