    /*
     * The Google NewsShow embeds a news slideshow on your page, letting your users see headlines 
     * and previews of Google News Search results, based on queries that you've selected.
     *
     * This sample will show how to specify queries for the News Show.
     * http://code.google.com/apis/ajaxsearch/documentation/newsshow.html
    */
    
    google.load("elements", "1", {packages : ["newsshow"]});
    
    function onLoad() {
      // Set the queries to 'the frames', 'glen hansard', 'the swell season' and 'once'
      var options = {
        "queryList" : [
          {
            "title" : "The Frames",
            "q" : '"the frames" band hansard',
						"rsz" : "small",
						"scoring" : "d"
          },
          {
            "title" : "Glen Hansard",
            "q" : '"glen hansard"',
						"rsz" : "small",
						"scoring" : "d"
          },
          {
            "title" : "The Swell Season",
            "q" : '"the swell season"',
						"rsz" : "small",
						"scoring" : "d"
          }
        ]
      }
      var content = document.getElementById('theFramesGoogleNewsContent');
      var newsShow = new google.elements.NewsShow(content, options);
    }
    
    google.setOnLoadCallback(onLoad);
