var a=new Array('eam.it','in','fo@art','mailto');
email_scrambler = "<a href='"+a[3]+":"+a[1]+a[2]+a[0]+"' title='contact_ArTeam'>contact ArTeam<\/a>";

$(document).ready(function() 
	{
	$('#the_text').show();
		$('a#the_link').click(function() 
		{
			$('#the_text').toggle(200); return false;
		});
		
	$('#il_testo').hide();
		$('a#il_link').click(function() 
		{
			$('#il_testo').toggle(200); return false;
		});
		
	$('#il_testo2').hide();
		$('a#il_link2').click(function() 
		{
			$('#il_testo2').toggle(200); return false;
		});

	$('#il_testo3').hide();
		$('a#il_link3').click(function() 
		{
			$('#il_testo3').toggle(200); return false;
		});
		
	$('#il_testo4').hide();
		$('a#il_link4').click(function() 
		{
			$('#il_testo4').toggle(200); return false;
		});
		
	});


