<!-- 
	var strapLines = new Array(5);
	strapLines[0] = "Content to mobiles & landlines with a SMileS";
	strapLines[1] = "SMileS - What a way to get your message over";
	strapLines[2] = "Your imagination is our limit";
	strapLines[3] = "Wherever you are - let SMileS help you get your message across";
	strapLines[4] = "you think it – we create it";
	
	function setStrapLine(){
		if(document.getElementById('strapLine') != null){
			var ran_unrounded=Math.random()*(strapLines.length-1);
			var ran_number=Math.round(ran_unrounded); 
			document.getElementById('strapLine').innerHTML = strapLines[ran_number];
		}
	}
	
//-->