﻿var a = null;
var timer_id = 0;
var timein = function(){
    $(a).parent().find('.cloud').fadeIn(50);
    
};

$(document).ready(function() {
    $('.cloud').append('<span class="top"></span><span class="bottom"></span>');
    $('.cloud_content a').hover(
        function(){
            a = this;
            timer_id = setTimeout('timein();',250);
        },
        function(){
            clearTimeout(timer_id);
            $(this).parent().find('.cloud').fadeOut(250);
        }
    );

});
