/***************************************************************************
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *	 http://www.gnu.org/licenses/gpl.txt
 *
 ***************************************************************************/

 Read me.
 
 JavaScript DragDrop API:
	An easy to use API that allows you easily create draggable images or layers.

 http://www.bsgonlinegames.com/

 1.0 Setup

	Simply upload the files to your web server.


 2.0 Using dragdrop API
 
/* Directions:
 *  To make an object draggable add the following javascript:
 *    onmousedown="dd_start('object_id');"
 *	The draggable object should be styled: position: absolute;
 *
 * Example:
 *	<html>
 *	<head>
 *		<title>Drag & Drop Demo</title>
 *		<script type="text/javascript" src="dragdrop.1.0.1.js" />
 *	</head>
 *	<body>
 *	 	<div id="container">
 *			<div id="container_header" onmousedown="dd_start('container');">USE ME TO DRAG</div>
 *			I'm draggable! Is draggable even a word?
 *	 	</div>
 *	</body>
 *	</html>
*/ 
