
var edButtons = new Array();
edButtons[edButtons.length] = 
new edButton('ed_strong'
,'Fett'
,'<strong>'
,'</strong>'
,'b'
);


edButtons[edButtons.length] = 
new edButton('ed_em'
,'Kursiv'
,'<em>'
,'</em>'
,'i'
);


edButtons[edButtons.length] = 
new edButton('ed_link'
,'Link'
,''
,'</a>'
,'a'
); // special case


edButtons[edButtons.length] = 
new edButton('ed_block'
,'Zitat'
,'<blockquote>'
,'</blockquote>'
,'q'
);


edButtons[edButtons.length] = 
new edButton('ed_pre'
,'Code'
,'<code>'
,'</code>'
,'c'
);


edButtons[edButtons.length] = 
new edButton('ed_strike'
,'Durchstreichen'
,'<strike>'
,'</strike>'
,'s'
);


