
$('#tooltipimage').css("display","block");
$('#tooltipimage').qtip({
    show: 'mouseover',
    hide: 'mouseout',
    position: { 
        corner: { 
            target: 'topRight', 
            tooltip: 'bottomLeft' 
        }
    },
    content: {
        text: '"These pajamas are what dreams are made of. Silky soft, really comfortable, and designed to be roomy, yet very pretty and feminine."<br /><br />-Katie, 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'
    }
 });
 