__savedHeight = 0;

		function resizeTheColorbox(height) {
			if (height > 0) {
				__savedHeight = new Number(height);
				var newHeight = __savedHeight + 50; // addition is the submit button offset

				$(".open-lightbox").colorbox.resize({
					height : newHeight
				});
			}
		}

		$(function() {
			$(".open-lightbox").colorbox({
				"inline" : true,
				"href": "#contact-form iframe",
				"width": 600,
				"innerHeight": $("#contact-form iframe").height()   // Only deals with initial load
			});
		});

		$(document).bind('cbox_complete', function(){
			resizeTheColorbox(__savedHeight);
		});
