
    // There are different ways of doing this.. This is probably what you want.
    // Function where you can send the content you want. Also, you can send a title.
    // See below on the ParknFly <a> for init code (around line 87)
    function createTip(element,title,content){
        new Tip(element, content, {
            title: title,
    		//style: 'darkgrey',
			borderColor: '#c7c7c7',
			style: 'default',
			radius: 1,
			border: 1,
    		stem: 'bottomLeft',
    		hook: { target: 'topLeft', tip: 'bottomLeft' },
    		offset: { x: 0, y: -30 },
			stem: { height: 20, width: 20 }
    	});
    }
	
	function resumeTip(element,title,content){
        new Tip(element, content, {
            title: title,
    		//style: 'darkgrey',
			borderColor: '#c7c7c7',
			style: 'resume',
			radius: 1,
			border: 1,
    		//stem: 'bottomMiddle',
    		hook: { target: 'bottomMiddle', tip: 'topMiddle' },
    		offset: { x: 0, y: 4 },
			stem: { height: 20, width: 20 }
    	});
    }

