/* Filename:    J013_readyShowOverload.js
 * Description: Overload the Ready screen to run inventory app
 * To use: make this script the default (in .default.js)
 * and provide inventory.js (such as a copy of SimpleInv7)
 * Copyright:   2006 The Code Corporation. Please see http://www.codecorp.com/jsLicensing.html for information regarding copyright and grant of license.
 * $Revision: 118 $
 * $Date: 2006-12-05 16:26:51 -0700 (Tue, 05 Dec 2006) $
 */
 
include(".crx.js");


function runInventory()
{
    if( !reader.runScript("inventory.js") )
        alert("failed to run inventory.js");
}


ready.rightSoftkey = new gui.Softkey("Invntory",  runInventory);
ready.show();

//EOT
