google.load("feeds", "1");
	function initialize() {
		var attributes = ["comments","title", "link", "publishedDate", "author"]; 
		//contentSnippet = description
		var feed = new google.feeds.Feed("http://www.logosquotes.org/rss_en.xml");
			feed.setNumEntries(1);
		feed.load(function(result) {
			if (!result.error) {
				var container = document.getElementById("feed");
				for (var i = 0; i < result.feed.entries.length; i++) {
					var entry = result.feed.entries[i];
					var div = document.createElement("div");
					var span = document.createElement('span');
					var link = document.createElement('a');
						link.setAttribute('href', entry.link);
						link.appendChild(document.createTextNode(entry.title));
					var link2 = document.createElement('a');
						link2.setAttribute('href', entry.link);
						link2.appendChild(document.createTextNode('All translations'));


						//Se volete impostare il nome di una classe per lo stile usate:
						//div.setAttribute((document.all ? 'className' : 'class'), 'rosso');
						//Questo perch FF e IE utilizzano un metodo diverso per farlo...
						div.setAttribute((document.all ? 'className' : 'class'), 'logos-quotes');
						//div.style.cssText = 'color:#003; margin-top:10px';
						//span.style.cssText = 'color:#777; font-size:11px';
						//link.style.cssText = 'font-weight:bold';
						
						div.appendChild(link);
						div.appendChild(document.createElement('br'));
						//controlla lingua autore e frase lingua='EN';
							if(entry.comments =="EN")	{
						div.appendChild(document.createElement('br'));
						span.appendChild(link2);
						div.appendChild(span);
						div.appendChild(document.createElement('br'));
						container.appendChild(div);
						}
							else	{
						div.appendChild(document.createElement('br'));
						div.appendChild(document.createTextNode(entry.author));
						div.appendChild(document.createElement('br'));
						span.appendChild(link2);
						div.appendChild(span);
						div.appendChild(document.createElement('br'));
						container.appendChild(div);
						}
				}
			}
		});
	}
	google.setOnLoadCallback(initialize);
