jQuery.ajax({
	url: "http://search.twitter.com/search.json?q=from%3Asoswp",
	type: 'GET',
	dataType: 'jsonp',
	timeout: 1000,
	error: function(){ jQuery("#soswp-twitter").html("Cip Cip"); },
	success: function(json){
		if(json != undefined && json != null){
			var item = json.results[0];
			jQuery("#soswp-twitter").html('&ldquo; <em>'+item.text+'</em> &rdquo;');
		}
	}	
});
