
 $(document).ready(function() {
     $('.edit_area').editable('http://www.resumetalks.org/test/save.php', {
         type      : 'textarea',
         cancel    : 'Cancel',
         submit    : 'OK',
         indicator : '<img src="img/indicator.gif">',
         tooltip   : 'Click to edit...',
		 style		: 'display: inline; height:300px;'
		}
	 );
	 $('.edit').editable('http://www.resumetalks.org/test/save.php', {
		cancel	: 'Cancel',
		submit	: 'Update',
		indicator	: '<img src="img/indicator.gif">',
		tooltip		: 'Click to edit...',
		style	: 'display: inline;'
		}
	 );

 });
