Including DOCTYPE for iPhone/iPad support

iPad and iPhone require the <!DOCTYPE html... for Pickle to render properly.

Without the DOCTYPE at the top of a page that includes Pickle, the player may not render properly.

While there are many DOCTYPE's available, we recommend using the DOCTYPE as shown in the following example:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<HTML>
<HEAD>
<TITLE>My Page Title</TITLE>

<!-- Pickle Engine -->
<script src="path/to/pickle.js" language="JavaScript"></script>
<!-- Skin -->
<link href="path/to/_stylesheet.css" rel="stylesheet" type="text/css">

</HEAD>
<BODY>

<!-- DIV Container -->
<div data-media="path/to/test-audio.mp3"></div>

</BODY>
</HTML>