$(document).ready(function() {
  
  // ======================================================================================================
  // Own Your Own contact form referral
  if ( ! $("option[@value='Other:']").is(":selected") ) { // If option not selected, hide addt'l input field
    $('div#PotentialOwnerReferredbyOther').hide();    
  }
  $("select#PotentialOwnerReferredby").click(function() {
    if ( $("option[@value='Other:']").is(":selected") ) { // If option is selected
      $("div#PotentialOwnerReferredbyOther").slideDown("normal"); // Show the addt'l input field
    } else {
      $("div#PotentialOwnerReferredbyOther").slideUp("normal"); // Otherwise, hide the addt'l input field
    }
  });

  // ======================================================================================================
  // Own Your Own term agreement
  $('input#PotentialOwnerAgreetoterms').click(function(){
    $.get('/ownyourown/agreetoterms');
    $('#PotentialOwnerTerms').slideUp("normal"); // Take this element out
  });



  // ======================================================================================================
  // Status editor for Dashboard
  $('.editStatus').editable("/dashboard/locationupdate", {
    name      :   'data[Location][status]',
    data      :   " {'Open':'Open','Soon':'Opening Soon','Available':'Franchises Available','Fast Track':'Fast Track'}",
    type      :   'select',
    indicator :   '<img src="/img/ajax_indicator.gif">',
    style     :   "font-size:80%; width:200px;",
    submit    :   "Apply" 
  });


  $(".sortable").tablesorter(); 

});




// Own Your Own Term Agreement >> post-submit callback 
function hidePotentialOwnerTerms() { 
  $("div#PotentialOwnerTerms").slideUp("normal"); // Otherwise, hide the PotentialOwnerTerms div
}