//
// URL:  http://jquery-howto.blogspot.com
//Author URL: http://me.boo.uz
//
(function($){
    $.extend({
    jGFeed : function(is_snippet, rss_div_id, url, fnk, num, key)
    {
          
        if(url == null) 
        {
            return false;
        }

        //
        // Build Google Feed API URL
        //
        var gurl = "http://ajax.googleapis.com/ajax/services/feed/load?v=1.0&callback=?&q="+url;

        if (num != null) 
        {
            gurl += "&num="+num;
        }

        if (key != null) 
        {
            gurl += "&key="+key;
        }

        //
        // AJAX request the API
        //
        $.getJSON(gurl, function(data)
        {
            if (typeof fnk == 'function')
            {
                fnk.call(this, is_snippet, rss_div_id, data.responseData.feed);
            }
        
            else
            {
                return false;
            }
        });
    }
  });
  
})(jQuery);