var artists =
	[ "dernière volonté", "ophir", "b'nai b'rith", "z prochek", "mürnau",
	  "noise process", "runes order", "folkstrom", "controlled fusion", "feindflug",
	  "stratum terror", "f/a/v", "ordo (rosarius) equilibrio", "taint", "merzbow",
	  "iszoloscope", "feindflug", "antigen shift", "ppf", "haus arafna",
	  "propergol", "savak", "eisengrau", "terrorfakt", "hiv+",
	  "core-tex labs", "buckettovsissors", "wumpscut", "5f_55", "kreuzbund",
	  "mimetic", "p.a.l", "ms gentur", "zymosiz", "omnicore",
	  "ionic vision", "soman", "werkbund", "noisex", "genocide organ",
	  "wappenbund", "rasthof dachau", "converter", "asche", "synth-etik",
	  "suicide commando", "winterkälte", "saints of eden", "thorofon", "s.i.n.a",
	  "proyecto mirage", "turbund sturmwerk", "sona eact", "drape excrement", "tactical sekt",
	  "observe and control", "manufactura", "velvet acid christ", "seelenkrank", "mono no aware",
	  "strom.ec", "stahlzimmer", "ah cama-sotz", "leiche rustikal", "negative sanktionen",
	  "telepherique", "mimetic", "pow[d]er pussy", "grunt", "placid",
	  "cut.rate.box", "torso fiction", "maruta kommand", "aural blasphemy", "poésie noire",
	  "micropoint", "skalpell", "tactical sekt", "subliminal", "fleisch macht böse",
	  "god module", "angels in bondage", "dataraper", "klangstabil", "mz.412",
	  "synapscape", "fear factory", "decoded feedback", "!bang elektronika", "leæther strip",
	  "funker vogt", "pzycho bitch", "sielwolf", "sonar", "imminent",
	  "slogun", "institut", "xotox",
	  "controlled fusion", "blutengel", "clear vision", "antigen shift", "streicher",
	  "november növelet", "huren", "noise process", "phosgen", "salt",
	  "wutanes heer", "sophia", "stratum terror", "astrea redux", "massimo",
	  "mono no aware", "qntal", "corvus corax", "gaë bolg and the church of fand", "tanzwut",
	  "welle:erdball", "funker vogt", "zymosiz", "der blutharsch", "die form",
	  "better schindt", "kreuzbund", "sektion b", "industriepalast",
	  "diary of dreams", "noisex", "fading colours", "feindflug", "rammstein",
	  "painslut", "hocico", "morgenstern", "dulce liquido", "armageddon dildos",
	  "suicide commando", "kirlian camera", "the retrosic", "gestalt", "ordo (rosarius) equilibrio",
	  "p.a.l", "marita schreck", "schattenslag", "thanacid", "cloama",
	  "navicon torture technologies", "stin scatzor", "andxesion", "terror organ",
	  "propergol", "today i'm dead", "axon neuron / vagwa", "karjalan sissit"
	];
var artists_index = (time() % (artists.length / 4)) * 4, shift_index = 0, shift_right = 1;
function shiftArtists()
{
	var str = "   ";
	str += (shift_index % 2 == 0 ? "]" : "[");
	str += "  occii amsterdam  ";
	str += (shift_index % 2 == 0 ? "[" : "]");
	str += "  saturday 13 september  ";
	str += (shift_index % 2 == 0 ? "]" : "[");
	str += "  submissive parasites  ";
	str += (shift_index % 2 == 0 ? "[" : "]");
	str += "     =";
	for (var i = 0; i < shift_index; i++)
		str += "=";
	str += "     " + artists[artists_index];
    window.status = str;
	artists_index = (artists_index + 1) % artists.length;
	if (shift_right)
	{
		shift_index += 1; if (shift_index == 11) shift_right = 0;
	}
	else
	{
		shift_index -= 1; if (shift_index == 0) shift_right = 1;
	}
	setTimeout('shiftArtists()', 250);
}

