
$(document).ready(function() 
{

	$('a.addfilm').click(function() 
	{
		$(this).parent().next('form').toggle('slow');
		return false;
	});
	
	$(function() 
	{
		$(".contact_submit").hide();
	});
	
	$( "#tabs" ).tabs();
	
});

function showRecaptcha(element, submitButton, recaptchaButton, themeName) 
{
  Recaptcha.destroy();
  Recaptcha.create("6Lf6MwsAAAAAAD61L09W35-lsiQNYHJDcTKGnoTI", element, {
        theme: themeName,
        tabindex: 0,
        callback: Recaptcha.focus_response_field
  });
  $(".contact_submit").hide();
  $(".recaptcha_required").show();
  $("#"+recaptchaButton).hide();
  $("#"+submitButton).show();
}
