	document.getElementById('contactmail').href='mailto:info'+'@'+'neat'+'monster'+'.com';
	document.getElementById('contactmail').innerHTML='info'+'@'+'neat'+'monster'+'.com';

//	 $(".positions span[title]").tooltip({tip:'#demotip',effect:'slide'});

	$('span').each(function(){
		$(this).mouseover(function(){

			var color=$(this).attr("id");
			var color2=color.substr(2);
//			var color2=color.substr(2);
			color2="#"+color2;
			$(this).css({"color": color2});  
			$(this).css({"cursor":"pointer"});

		});

		$(this).mouseout(function(){
			$(this).css({"color":""});
			$(this).css({"cursor":"pointer"});
		});

	});


