
$('#tooltipimage').css("display","block");
$('#tooltipimage').qtip({
    show: 'mouseover',
    hide: 'mouseout',
    position: { 
        corner: { 
            target: 'topRight', 
            tooltip: 'bottomLeft' 
        }
    },
    content: {
        text: '"This style is a customer favorite, and now these PJs come in pink, lavender, and blue. They really do have the perfect name. They\'re the softest pajamas I\'ve ever worn."<br /><br />-Stacey, Pajama Counselor',
        title: { 
            text: 'Our Gift Counselor Says...'
        }
    },
    style: { 
        title: { 
            fontFamily: 'Arial',
            fontSize: '15pt',
            background: '#9FA8DF'
        },
        border: {
            width: 1,
            radius: 3,
            color: '#8F8F9F'
        },
        fontStyle: 'italic',
        fontSize: '14pt',
        fontFamily: 'Arial',
        width: 300,
        tip: 'bottomLeft'
    }
 });
 