﻿$(document).ready(function() {

    $("ul.productsList li#product01 img").qtip({
        content: "<img src=\"/UI/Default/Images/Pages/product_2x12mm_large.jpg\" width=\"500\" width=\"275\" alt=\"2x12mm\" />",
        hide: { fixed: true },
        style: {
            width: 500,
            height: 275
        },
        position: {
            target: 'mouse',
            corner: {
                tooltip: "leftTop"
            }
        }
    });
    $("ul.productsList li#product02 img").qtip({
        content: "<img src=\"/UI/Default/Images/Pages/product_3x15mm_large.jpg\" alt=\"3x15mm\" />",
        hide: { fixed: true },
        style: {
            width: 500,
            height: 275
        },
        position: {
            target: 'mouse',
            corner: {
                tooltip: "topMiddle"
            }
        }
    });
    $("ul.productsList li#product03 img").qtip({
        content: "<img src=\"/UI/Default/Images/Pages/product_PetScanV5_large.jpg\" alt=\"PetScan V5\" />",
        hide: { fixed: true },
        style: {
            width: 500,
            height: 275
        },
        position: {
            target: 'mouse',
            corner: {
                tooltip: "rightTop"
            }
        }
    });

});