$(document).ready(function() {
    $('.acceptCardIcon').qtip({
        content: 'This Restaurant Accepts the Wheretoeat.ie Gift Card',
        position: {
            corner: {
                target: 'bottomRight',
                tooltip: 'topLeft'
            }
        },

        style: {
            name: 'green',
            tip: false,
            width: 320,
            tip: 'topLeft'

        }
    })
    $('.acceptCardIconRight').qtip({
        content: 'This Restaurant Accepts the Wheretoeat.ie Gift Card',
        position: {
            corner: {
                target: 'bottomRight',
                tooltip: 'topLeft'
            }
        },

        style: {
            name: 'green',
            tip: false,
            width: 160,
            tip: 'topLeft'

        }
    })
    $('.restaurantDiaryIcon').qtip({
        content: 'Book a table online with Restaurant Diary.',
        position: {
            corner: {
                target: 'bottomRight',
                tooltip: 'topLeft'
            }
        },

        style: {
            name: 'green',
            tip: false,
            width: 270,
            tip: 'topLeft'

        }
    })
    $('.restaurantDiaryIcon').qtip({
        content: 'Book a table online with Restaurant Diary.',
        position: {
            corner: {
                target: 'bottomRight',
                tooltip: 'topLeft'
            }
        },

        style: {
            name: 'green',
            tip: false,
            width: 270,
            tip: 'topLeft'

        }
    })
    /*$('.offerDetails').qtip({

        content: $(this).children(".tooltipContent"),
        position: {
            corner: {
                target: 'bottomLeft',
                tooltip: 'topLeft'
            }
        },

        style: {
            name: 'green',
            tip: false,
            width: 220,
            tip: 'topLeft'

        }
    })*/

    $('.bluePanel .offerItem .offerDetails').each(function() {
   $(this).qtip({
      content: $(this).children('.tooltipContent'),
      show: 'mouseover',
      hide: 'mouseout',
     style: {
            name: 'green',
            tip: false,
            width: 220,
            tip: 'topLeft'

        },
      position: {
            corner: {
                target: 'bottomLeft',
                tooltip: 'topLeft'
            }
        }
   });
});

});

