﻿$(document).ready(function () {
    
    // Apply qtips to images
    $(".image-popup").each(function () {
        $(this).qtip({
            content: jQuery('div.zoomed', jQuery(this).parent()).html(),
            position: {
                corner: {
                    target: 'bottomMiddle',
                    tooltip: 'topLeft'
                },
                adjust: { screen: true }
            },
            style: {
                tip: 'topLeft',
                border: {
                    width: 3,
                    radius: 8,
                    color: '#C1D72E'
                },
                width:'auto'
            },
            hide: {
                fixed: true,
                delay: 150
            }
        });



    });

});
