function BildLaden(length, path, type)
{
if(document.images)
    for(var i = 1; i<=length; i++) {
        this[i]= new Image();
        this[i].src= path + i + type;
    }
    return this
}
