google.setOnLoadCallback(function() {

$('#movies_container').hide();
$('#accept_disclaimer').submit(function() {
  $('#disclaimer_container').hide();
  $('#movies_container').show();
  return false;
});

});