
$('#tooltipimage').css("display","block");
$('#tooltipimage').qtip({
    show: 'mouseover',
    hide: 'mouseout',
    position: { 
        corner: { 
            target: 'topRight', 
            tooltip: 'bottomLeft' 
        }
    },
    content: {
        text: '"What could be better than a pair of PJs that are just as soft and comfortable as your favorite T-shirt, but look WAY prettier! And they\'re pink, too. Perfect."<br /><br />-Courtney, 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'
    }
 });
 