@ BioVader - nice

It would be easy to do a popup w/ the menu
Ideas
- Take that image in photoshop and cut out each image (make a link per image) and place the images in a block.
- Image map links onto that image and place it in a block or even a simple line of text links w/ little arrow bullet images.
- Make a vBdrop down menu like the breadcrumb menu.
I was looking @ the menu its is only a 20x196 jpg image strip with tables and rows.
Code:
<table id="mtwtcMenu3" border="0" cellpadding="0" cellspacing="0" onmouseover="mtwtc.MenuOver()" onmouseout="mtwtc.MenuOut()">
<tr><td style="padding-left: 2px"><div><b>Choose a class:</b></div></td></tr>
<tr><td style="background: #232323; height:3px"></td></tr>
<tr><td><div><a href="javascript:;" onmouseup="mtwtc.ChooseClass(0)">Druid</a></div></td></tr>
<tr><td><div><a href="javascript:;" onmouseup="mtwtc.ChooseClass(1)">Hunter</a></div></td></tr>
<tr><td><div><a href="javascript:;" onmouseup="mtwtc.ChooseClass(2)">Mage</a></div></td></tr>
<tr><td><div><a href="javascript:;" onmouseup="mtwtc.ChooseClass(3)">Paladin</a></div></td></tr>
<tr><td><div><a href="javascript:;" onmouseup="mtwtc.ChooseClass(4)">Priest</a></div></td></tr>
<tr><td><div><a href="javascript:;" onmouseup="mtwtc.ChooseClass(5)">Rogue</a></div></td></tr>
<tr><td><div><a href="javascript:;" onmouseup="mtwtc.ChooseClass(6)">Shaman</a></div></td></tr>
<tr><td><div><a href="javascript:;" onmouseup="mtwtc.ChooseClass(7)">Warlock</a></div></td></tr>
<tr><td><div><a href="javascript:;" onmouseup="mtwtc.ChooseClass(8)">Warrior</a></div></td></tr>
</table>
-+-+-+-+-+-+-+-+-+-+-+-+
Did You Know ?
mt_class (optional) If you have this variable set to a number, the calculator will be pre-set to show the talents for the corresponding class. If you don't have this variable in your script, then there will initially be a menu that lets the user choose which class to go with.
1 = Druid, 2 = Hunter, 3 = Mage, 4 = Paladin, 5 = Priest, 6 = Rogue, 7 = Shaman, 8 = Warlock, 9 = Warrior
Code:
<script>
var mt_width = 500;
var mt_class = 1;
var mt_css = 'http://www.yoursite.com/forums/style.css';
</script>
If you remove the line of code the Dropdown will be default page load vs. only 1 class.