/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


var dress=new Array();

function addDress(slot,item){
    dress[slot]=item;
}

function getDress(slot){
    return dress[slot];
}

function clearSlot(slot){
    dress[slot]=null;
}
