var mouse = new coordinate(0,0);

function DynMouseDown(x,y) {
	mouse.x = x;
        mouse.y = y;
	return true
}

function DynMouseMove(x,y) {
        mouse.x = x;
        mouse.y = y;
	return true
}

function DynMouseUp(x,y) {
        mouse.x = x;
        mouse.y = y;
	return true
}

function coordinate(x,y) {
	this.x = x;
	this.y = y;
}

// initial settings               
function init()	{
		// API Init
	        DynLayerInit()
		initMouseEvents()
		
		// The objects
//		newsBoxObj = new DynLayer('newsbox');
}
