
function get_imglist( images_string, startbild ){
    startbild = document.getElementById( startbild ).src;
    //alert(images_string);
    var temp = images_string.split(" ");
    var temp2=[];
    var images=[];
    var gefunden;
    //alert(temp[1]);
    for( i=0, runs=temp.length; i<runs; i++){
        if ( ! temp[i] ) continue;
        if ( startbild.indexOf(temp[i]) > -1 ) gefunden=true;
        if ( gefunden ) images.push(temp[i]);
        else temp2.push(temp[i]);
    }
    return images.concat(temp2);
    
    // Arrays verbinden
    // ZahlenGesamt = Zahlen.concat(AndereZahlen);

    
    //alert(startbild);
}
