﻿
$(function() {
    $('#bottom_thumbs li a').each(function() {

        var me = $(this);

        me.qtip({
            content: me.next().html(),
            position: {
                corner: {
                    target: 'topMiddle',
                    tooltip: 'bottomMiddle'
                },
                adjust: {
                    screen: true
                }
            },
            style: {
                name: 'light',
                tip: {
                    corner: 'rightBottom'
                },
                border: {
                    width: 1
                }
                    ,
                width: {
                    max: 150
                }
            }
        });

    });
});
