Insertion of elements before or after in JavaScript

Given an ul:

<ul id="elem"> <li>text</li> <li>text</li> <li>text</li> <li>text</li> <li>text</li> </ul>

Insert an element with the text 'start' at the beginning, and an element with the text 'finish' at the end of it.

enru