$(document).ready(function() {

$('.js_yes').css({ display: 'block'});
$('.js_no').css({ display: 'none'});

$('.profile_editable_text').css({cursor:'pointer'});
$('.profile_editable_textarea').css({cursor:'pointer'});
$('.profile_editable_text').addClass('aHover');
$('.profile_editable_textarea').addClass('aHover');

});


$(function() {
        

  $(".profile_editable_textarea").editable("http://www.scotlandis.com/join/save", { 
      loadurl : "http://www.scotlandis.com/join/load",
      indicator : "<img src='/images/indicator.gif'> Saving",
      type   : 'textarea',
      submitdata: { _method: "put" },
      select : true,
      submit : 'Save',
      cancel : 'Cancel',
      rows : '15',
      cols : '50',
      style  : 'inherit',
      tooltip : 'Click to Edit',
      placeholder : '{<em> no data </em>}'

  });
  $(".profile_editable_text").editable("http://www.scotlandis.com/join/save", { 
      indicator : "<img src='/images/indicator.gif'> Saving",
      type   : 'text',
      submitdata: { _method: "put" },
      select : true,
      submit : 'Save',
      cancel : 'Cancel',
      width : '250',
      style  : 'inherit',
      tooltip : 'Click to Edit',
      placeholder : '{<em> no data </em>}'

  });
  
  

  


});

