function jumpto(the_loc) {
the_new = the_loc.toLowerCase();
the_split = the_new.split(" ");
the_go = the_split[0];
the_go += "-";
the_go += the_split[1];
if (the_go == "main-feed") {
the_go = "feed";
the_url = "http://feeds.feedburner.com/bailey-" + the_go;
window.location = the_url;
} if (the_go == "politics-world") {
the_go = "politics-world-feed";
} if (the_go == "middle-east") {
the_url = "http://feeds.feedburner.com/middle-east-conflict-feed";
window.location = the_url;
} else {
the_url = "http://feeds.feedburner.com/bailey-mail-" + the_go;
window.location = the_url;
}
}
