var home = {
	
	// Questa serve a cambiare il video in home page
	cambia_video : function(id_video){
		var stringa_ht = "";
		stringa_ht += "<object width=\"469\" height=\"295\">"
		stringa_ht += "<param name=\"movie\" value=\"http://www.youtube.com/v/" + id_video + "?fs=1&amp;hl=it_IT\"></param> ";
		stringa_ht += "<param name=\"allowFullScreen\" value=\"true\"></param>";
		stringa_ht += "<param name=\"allowscriptaccess\" value=\"always\"></param>";
		stringa_ht += "<embed src=\"http://www.youtube.com/v/" + id_video + "?fs=1&amp;hl=it_IT\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"469\" height=\"295\"></embed>";
		stringa_ht += "</object>";
		$('#id_contenitore_video').html(stringa_ht);
		
	}	
	
};

