$(window).load(function() {
	var b = $("body").height();
	var c = $("#container").height();

	if (c > b) {
		$("body").css("height", $("#container").height() + "px");
	}
	else {
		$("body").css("height", $("html").height() + "px");
	}

	$("#logo").flash({
		src: "/flash/juliette.swf",
		width: 300,
		height: 95
	});

});
