// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

/*  RPXNOW.flags = "show_provider_list";
  RPXNOW.default_provider = "openid";*/

jQuery(document).ready(function() {
  jQuery(".advanced_view_link").click(function(){   
    jQuery(".advanced").show();
    jQuery(".simple").hide();
    jQuery("#of_subject").val(jQuery("#subject").val());
    jQuery(".simple input").val("")

    false;
  });

  jQuery(".simple_view_link").click(function(){   
    jQuery(".simple").show();
    jQuery(".advanced").hide();
    jQuery("#subject").val(jQuery("#of_subject").val());
    false;
  });
});