﻿$('a.tooltip').each(function() {
    $(this).qtip({
        content: $(this).attr('title'),
        position: { target: 'mouse' },
        style: {
            tip: 'topLeft',
            name: 'dark'
        }
    })
   .attr('title', '');
})

$('img.tooltip').each(function() {
    $(this).qtip({
        content: $(this).attr('alt'),
        position: { target: 'mouse' },
        style: {
            tip: 'topLeft',
            name: 'dark'
        }
    })
   .attr('alt', '');
})

$('input.tooltip').each(function() {
    $(this).qtip({
        content: $(this).attr('title'),
        position: { target: 'mouse' },
        style: {
            tip: 'topLeft',
            name: 'dark'
        }
    })
   .attr('title', '');
})

$('span.tooltip').each(function() {
    $(this).qtip({
        content: $(this).attr('title'),
        position: { target: 'mouse' },
        style: {
            tip: 'topLeft',
            name: 'dark'
        }
    })
   .attr('title', '');
})
