How to change Save and Cancel Button
hello,
i'm use the fckeditor by an littel project by myself.
how to change save an cancel button as the two buttons on the left side such as *.png

i figure this out this reslut

the code
<script type="text/javascript">
////set all the FCKeditor configuration here and pass it to the editable
var oFCKeditor = new FCKeditor( 'edit-menge') ;
oFCKeditor.Config['ToolbarStartExpanded'] = false;
oFCKeditor.Width = 80;
oFCKeditor.Height = 50;
oFCKeditor.ToolbarSet = 'SetBklein' ;
oFCKeditor.BasePath = "js/fckeditor/" ;
$('.menge<?php echo $id_inhaltsstoffartnr; ?>').editable(
{
type: 'wysiwyg',
editor: oFCKeditor,
onSubmit:function (menge){
$.ajax({
type: "POST",url: "set-save.php",
data: {"menge": menge.current, "pid":pid} ,
complete: function(){ alert('>> gespeichert <<') }, //manage the complate if needed
success: function(html){ }//get some data back to the screen if needed
}); //close $.ajax(
},
//submit:'save',
//cancel:'cancel'
submit:('<input id="image-link-accept" type="submit" />'),
cancel:('<input id="image-link-cancel" type="reset" />')
});
</script>
buttons styled in css as sprite