google.load("feeds", "1") //Load Google Ajax Feed API (version 1);
<!-- multiple feeds -->


// each row in search_title array contains 1) google search term, 2) displayed title
var search_title = [
['"anti-male"',  	'anti-male'],
['boys+achievement',	'boys achievement'],
['boys+"title ix"',	'boys title ix'],
['"child+custody"',	'child custody'],
['"child+support"',	'child support'],
['child+"well-being"',	'child well-being'],
['circumcision', 	'circumcision'],
['"domestic+violence"',	'domestic violence'],
['"early+death"',	'early death'],
['"family+court"',	'family court'],
['"false+accusations"',	'false&nbsp;accusations'],
['fatherless',  		'fatherless'],
['feminism',     	'feminism'],
['"male+bashing"',	'male bashing'],
['"men\'s+health"',	'men\'s health'],
['"men\'s+studies"',	'men\'s studies'],
['"parental+alienation"','parental alienation'],
['"paternity+fraud"',	'paternity fraud'],
['"reproductive+rights"+men or male',    	'reproductive rights men'],
['"reproductive rights"+women or female',	'reproductive rights women'],
['"selective+service"',	'selective service'],
['suicide+female',	'suicide female'],
['suicide+male', 	'suicide male']
];

// initialize is called by google. We add items of search_title array to news feed
function initialize() {
        var feedControl = new google.feeds.FeedControl();        
        for (i=0; i < search_title.length; i++){
	        search_term = escape( search_title[i][0] ); 
		title = "<a name=L"+i + ">"+ search_title[i][1] +"</a>";
 		//document.write(i+"--- "+search_term+ " * "+title +"<br/>"); 
		feedControl.addFeed("http://news.google.com/news?ie=UTF-8&oe=utf8&q="+ search_term +"&hl=en&gl=us&output=rss", title); 
	}      
       feedControl.draw(document.getElementById("feedControl"));
       // lets call bullets while we are at it
	bullets();
}

// bullets creates a list item from search_title array linking to actual news item heading
// It requires a div with id = bullets
function bullets(){
        var bullet_div = "";
	bullet_div += "Topics: <ul>";
	for (i=0; i < search_title.length; i++){
                search_term = escape( search_title[i][0] );
                title = search_title[i][1];
                bullet_div += "<li> <a href=#L" +i +">"+ title +"</a></li>"; 
        }
	bullet_div += "</ul><br/>";
        document.getElementById("bullets").innerHTML = bullet_div;
}
google.setOnLoadCallback(initialize);
