public OutlookBarItem(OutlookBarPane p, String lbl, Image img) {
pane = p;
image = new ImageHyperlink(pane.getControl(), SWT.CENTER);
image.setBackground(pane.getControl().getBackground());
image.addMouseTrackListener(new MouseTrackAdapter(){
public void mouseEnter(MouseEvent e){
if(label != null) label.setFont(UIDATA.FONT_9VB);
}
public void mouseExit(MouseEvent e){
if(label != null) label.setFont(UIDATA.FONT_9);