terms=['Heavy Fuckin Metal','Electro','A Pox On You Also','Rock n Roll','Blood raps','Wu hop','Power Pop','Disco','Roots and Dub','IDM','harDCore','Glitch','Funktronica','Force of Forces','Help the Helpy','Synth Pop','New Wave']

function randomizer()
	{
		randy=Math.random()
		if (randy<randLim)
			{randomizer();}
		else
			{return randy;}
	}


function writesomething()
	{	
//		alert(id)
		
		randLim=0.1;
		randomizer();
		
		rand=Math.floor((randy*terms.length));
		document.getElementById('tagline').innerHTML=terms[rand];	
	
		setTimeout("writesomething()",2000)	
	}