$(document).ready(function() {
  $('a.bio').cluetip({
	width: 145, // The width of the clueTip
	height: 20, // The height of the clueTip
	positionBy: 'fixed', // Sets the type of positioning: 'auto', 'mouse','bottomTop', 'fixed'
	topOffset: 0, // Number of px to offset clueTip from top of invoking element
    leftOffset: 15, // Number of px to offset clueTip from left of invoking element
    splitTitle: '|', // use the invoking element's title attribute to populate the clueTip...
                     // ...and split the contents into separate divs where there is a "|"
    showTitle: false, // hide the clueTip's heading
	dropShadow: false,
	arrows: true,
	fx: {             
    	open: 'fadeIn', // can be 'show' or 'slideDown' or 'fadeIn'
        openSpeed:  200
    }
  });
});