﻿jQuery.noConflict();

jQuery(document).ready(function($) {
    // $('span.tooltip').append('<span class="arrow"></span>');
    $('.county').hover(function() {
        $(this).children('span.tooltip').show();
    }, function() {
        $(this).children('span.tooltip').hide();
    });

    $('#logobar ul.logos').adidoCarousel({ minDisplay: 6 });
});