3)

$("#sample-bar").jixedbar({
showOnTop: true,
transparent: true,
opacity: 0.5,
slideSpeed: "slow",
roundedCorners: false,
roundedButtons: false,
menuFadeSpeed: "slow",
tooltipFadeSpeed: "fast",
tooltipFadeOpacity: 0.5
});
The showOnTop= true will allow the menubar to be on the top like at http://gozips.uakron.edu/~kps7. It is originally on the bottom. I was also able to have the bar be positioned underneath a banner by changing the position in the javascript to relative but this caused the drop down menus to not be positioned correctly.
CREATE TABLE books (
id int(6) unsigned NOT NULL auto_increment,
title varchar(100) NOT NULL default '',
author varchar(100) NOT NULL default '',
price decimal(3,2) NOT NULL default '0.00',
PRIMARY KEY (id)
) TYPE=MyISAM;