$(document).ready(function(){
    $("[class^='show_page_']").each(function(){
        $(this).qtip(
        {
            content: {
                text: '<img class="throbber" src="/images/loading.gif" alt="Trwa Ładowanie..." />',
                url: "/otherpage/preview/id/"+$(this).attr("class").toString().replace("show_page_", "")
            },
            position: {
                corner: {
                    target: 'bottomMiddle',
                    tooltip: 'topMiddle'
                },
                adjust: {
                    screen: true
                }
            },
            show: 'mouseover',
            hide: 'mouseout',
            style: {
                tip: true,
                border: {
                    width: 0,
                    radius: 4,
                    color: "#009EFF"
                },
                name: 'light',
                width: 420
                //height: 300
            }
        })
    })
})
