$(document).ready(function(){
	   
      $('#slideshow').innerfade({
        containerheight: '340px',
        timeout: 4000 
       }); 

      $('span.titled').editable('/lp/-edit-name.php',{
            indicator: ' Saving name...',
            tooltip : 'Click to edit',
            placeholder: 'Click to edit',
            submit  : 'save',
            name    : 'q',
            id      : 'id',
            style   : 'display:inline',
            width   : '150px'
    });

      
      $("#sortable").sortable({stop:function(i) {
            $.ajax({
            type: "GET",
            url: "ajax.php",
            q: $("#sortable").sortable("serialize")
      });
      }});


});



