function translate(){
	var userContent = "";
	if($("#content").val()){
		userContent = $("#content").val().replace(/^\s+/,"").replace(/\s+$/,"");
	}
	if(userContent.length>0){
		translateString(userContent);
	}
}

function translateString(toTranslate){
	$("#translated").html("translating...");
	$.post("/bahanatalk",{content: toTranslate},
		function(data){
			$("#translated").html(data);
		},"html");
}

function getQuote(){
	console.debug("getting quote...");
	var url="http://feeds.feedburner.com/brainyquote/QUOTEBR";
	var qframe = $("<iframe id='qframe' src='http://feeds.feedburner.com/brainyquote/QUOTEBR'/>");
	qframe.load(function(){alert("loaded");console.debug($("#qframe").contents().find("#feedContent > .entry"));});
	$('body').append(qframe);
}

