$(document).ready(function() {

    $('div.ctr a.circle').mouseenter(function(){
        $('div.box').hide();
        var target = $(this).attr("id");
        $("div#BOX_"+target).fadeIn(500);
    });
    $('div.ctr div.box').mouseleave(function(){
        $(this).fadeOut(200);
    });

}); 
