Add this to your headers if you don't have it:
<script src="/jquery.js"></script>
Footers:
<script>
var Section = new Array(); var Links = new Array(); var n = 0;
Section = ["SECTION NAME 1","SECTION NAME 2"];
Links[n++] = ["SECTION NAME","LINK NAME","URL"];
if($(".maintab_back:contains(Admin)")){
//Created by Agent Moose (8/24/2008)
$(".maintab_back:contains(Admin)").each(function(){$(this).html("<a href='javascript:open_quickies()'>Admin</a>");});
$("#upshrinkHeader2").parent().next().after("<div id='work'></div>");
//Created by Agent Moose (smcodes.smfforfree3.com)
$("#work").after('<div id="admin_quickies" style="display:none; position:absolute;"><table width="200" class="tborder"><tbody><tr class="catbg"><td>Admin Quickies - <a href="javascript:open_quickies();">Close</a></td></tr><span id="Stuff" width="200px"></span></tbody></table></div>');
for(i=0;i<Section.length;i++){
var Name = Section[i];
if(Section[i].match(/ /i)) var ID1 = Section[i].split(" ").join(""); else var ID1 = Section[i];
document.getElementById("Stuff").innerHTML += "<tr class='catbg' width='200px'><td width='200px'>" + Name + "</td></tr><tr class='windowbg' width='200px'><td class='smalltext' style='line-height: 1.3; padding:3px;' id='" + ID1 + "' width='200px'></td></tr>";
for(x=0;x<Links.length;x++){
if(ID1 == Links[x][0].split(" ").join("")) document.getElementById(ID1).innerHTML += "<a href='" + Links[x][2] + "'>" + Links[x][1] + "</a><br />";
};};}; function open_quickies(){$("#admin_quickies").toggle();};
</script>
This code is just like all the other Admin Quickies, but better.

Unlike the other Admin Quickies code, you can add Your own sections, and links.
SECTION NAME = The Names of the Section. To add more sections, just add more (,"") (No parentheses)
So, for example, it would be like this:
Section = ["SECTION NAME 1","SECTION NAME 2","I Add This"];
SECTION NAME = The Name for the section.
LINK NAME = The name for the link.
URL = The URL of that image.
Too add more links, add more of these lines:
Links[n++] = ["SECTION NAME","LINK NAME","URL"];
Again, Change SECTION NAME to the section you would like the images to be in

Enjoy
