$(document).ready(function() {
	var aa		= '@';
	$('.mail').each(function() {
		var spec	= $(this).attr("id");
		$(this).html('<a href="mailto:' + spec + aa + 'allmans' + '.se">' + spec+aa+'allmans'+'.se');
	});
	
	$('#linkBlocks .block').click(function(){
	
		var url	= $("a", this).attr("href");
		location.href=url;
	});
	
	$('.field .designed').focus(function() {
		$('.field .designed').removeClass('focus');
		$(this).addClass('focus');
	});
	
	$('.field .designed').blur(function() {
	  $(this).removeClass('focus');
	});
});
