﻿$(document).ready(function() {

    // create custom tooltip effect for jQuery Tooltip
    $.tools.tooltip.addEffect("steveFx",

    // opening animation
        function(done) {
            this.getTip().show();
        },
    // closing animation
        function(done) {
            this.getTip().hide(250);
            done.call();
        });

    $("#uk-map a:link").tooltip({ effect: 'steveFx', relative: 'true' });

    $("#site-list a").each(function(index) {

        var className = this.id;

        $(this).hover(function() {
            $("." + className).tooltip().show();
        }, function() {
            $("." + className).tooltip().hide();

        });

    });

});
