$(document).ready(function(){
    $(".abrir").colorbox({inline:true, href:"#galeria"});
    $("#superior ul li").mouseenter(function(){  
        $(this).find("ul").show();
    });
    $("#superior ul li").mouseleave(function(){
        $(this).find("ul").hide();
    });
    //$(".midia img").css("opacity", .5);
    //$(".midia li").hover(function(){
    //    $(this).stop().animate({'opacity': 1}, 300);
    //},function(){
    //    $(this).stop().animate({'opacity': .5}, 600);
    //});
    //
    $("area").hover(function(){
        $(".repre").hide();
        $("#"+$(this).attr("alt")).fadeIn();
    },function(){
        
    });
    $("area").click(function(e){
        $("#"+$(this).attr("alt")).fadeIn();
        e.preventDefault();
    });
});
