// JavaScript Document

<!--




// SCRIPT BARRA ROSSA
	var barra =0;
	$(document).ready(function() {
	
		$("#red-bar").click(function(){
			if(barra==0){
				$('#red-bar').animate({
							width: 682
				}, 150);
				document.getElementById("red-bar").innerHTML = 'with google translate (in new window): <a href="http://www.francescodimartino.it/index.php?transl=0" target="_blank">IT</a> <a href="http://translate.google.it/translate?u=http%3A%2F%2Fwww.francescodimartino.it%3Ftransl%3D1&sl=it&tl=en&hl=it&ie=UTF-8"  target="_blank">EN</a> <a href="http://translate.google.it/translate?u=http%3A%2F%2Fwww.francescodimartino.it%3Ftransl%3D1&sl=it&tl=de&hl=it&ie=UTF-8"  target="_blank">DE</a> <a href="http://translate.google.it/translate?u=http%3A%2F%2Fwww.francescodimartino.it%3Ftransl%3D1&sl=it&tl=fr&hl=it&ie=UTF-8"  target="_blank">FR</a> <a href="http://translate.google.it/translate?u=http%3A%2F%2Fwww.francescodimartino.it%3Ftransl%3D1&sl=it&tl=es&hl=it&ie=UTF-8"  target="_blank">ES</a>';
				barra=1;
			}
			else{
				$('#red-bar').animate({
							width: 279
				}, 150);
				document.getElementById("red-bar").innerHTML = 'change language';	
				barra=0;		
			}
			
		});

	});

//-->

