
//*************************************************************************
//				Toolbar Events
//*************************************************************************

function toolbar_mouse_move(movt, tool)
{
    if((typeof tool) == 'string')
        var t = document.getElementById(tool);
    else if ((typeof tool) == 'object')
        var t = tool;
    if(!t) return;
	if (t.className != 'toolbar_item_inactive') {
        if (movt == 'movein') {
            if(t.className != 'toolbar_item_selected') t.className = "toolbar_item_over";
    	} else {
            if(t.className != 'toolbar_item_selected') t.className = "toolbar_item_out";
    	}
	}
}

function toolbar_mouse_press(movt, tool)
{

}