$(document).ready(function(){

$.jGFeed('http://www.telecoms.com/category/format/wimax/feed/',
function(feeds){
// Check for errors
if(!feeds){
// there was an error
return false;
}
// do whatever you want with feeds here
for(var i=0; i<feeds.entries.length; i++){
var entry = feeds.entries[i];
var content = entry.contentSnippet;

var contentTruncate = content;

// Entry title

$(".news").html($(".news").html()+"<h3 style='font-size:1em;margin-bottom:0;'> <a href=\""+entry.link+"\">"+entry.title+"</a> </h3><p style='margin-bottom:5px;'>"+contentTruncate+" <a href=\""+entry.link+"\">...more</a></p>");
}
}, 1);
});
