/***
 * Cloud Hover 
 ***/
$(document).ready(function(){
$(".recent > a > img").hover(
    function() {

        var title = $(this).attr("title");
        $(this).parent().append($("<span class=\"ct\">" + title + "</span>").fadeIn("slow"));
    },
    function() {
         $(this).parent().find("span:last").remove();
    }
);
        

});


 /*

$(document).ready(function(){
    $("img.cloud").mouseenter(function() {
        var title = $(this).attr("title");
        $("span").first().text(title);
        
        
        

    });
});
*/

