[jQuery] Bringing arrows for Clue tip

[jQuery] Bringing arrows for Clue tip


Hi All,
I am trying to bring arrows for the clue tip which i am using for my
web site. Even though i have given "arrows: true" in my js, i am not
getting the arrows. Please see below for the code i used and give me
your suggestions.
My js code :
    jQuery('a.clueTip').each(function(){
            jQuery(this).cluetip({
            width: 200,
            arrows: true,
            cluezIndex: 999,
            showTitle: false,
            cursor: 'pointer',
            activation: 'click',
            sticky: true,
            positionBy: 'fixed',
            topOffset: 40,
            leftOffset: -200,
            local: true,
            hideLocal: true,
            attribute: 'href',
            closePosition: 'bottom',
            dropShadow: false,
            closeText: ' X Close'
            });
        });
Clue tip Content in xhtml:
         <div id="clueTipContent">
                    This is the content for clue tip
        </div>
My link in xhtml:
<a href="#clueTipContent">Click to get Clue Tip</a>
Thanks,
Bharani