/*************************************************************************
  This code is from Dynamic Web Coding 
  at http://www.dyn-web.com/
  Copyright 2003 by Sharon Paine 
  See Terms of Use at http://www.dyn-web.com/bus/terms.html
  Permission granted to use this code 
  as long as this entire notice is included.
*************************************************************************/

// leave in page for way to customize layout of tooltip 
// and avoid errors if onmouseovers/outs before page completely loaded
function doTooltip(e, msg) {
  if ( typeof Tooltip == "undefined" || !Tooltip.ready ) return;
  Tooltip.show(e, msg);
}

function hideTip() {
  if ( typeof Tooltip == "undefined" || !Tooltip.ready ) return;
  Tooltip.hide();
}
  
// variables for tooltip content 
var tipCover = '<div>Back to the home</div>';
var tipContact = '<div>Leave a message</div>';
var tipNewsletter = '<div>Subscription to the announcment list</div>';
var tipResume = '<div>Download my resume</div>';
var tipLinks = '<div>The Linkage Repository</div>';
var tipTxt = '<div>Just click it</div>';
var tipDeg = '<div>Supported by D&G</div>';

var tipQt = '<div>Apple Quick Time</div>';
var tipAa = '<div>Adobe Acrobat</div>';
var tipMf = '<div>Macromedia Flash</div>';
var tipFb = '<div>Mozilla FireFox</div>';
