// Cover Top
$(function() {
    var img = null;
    $.ajax({
        type: "POST",
        url: "/js/get_head.php",
        cache: false,
        success: function(html){
            $("#artiste").fadeTo("slow", 0).css({"backgroundImage" : "url("+html+")"}).fadeTo("slow", 1);
            img = html;
        }
    });
    setInterval(function() {
        $.ajax({
            type: "POST",
            url: "/js/get_head.php",
            data: "lastimg="+img,
            cache: false,
            success: function(html){
                if(html!=1)
                {
                    $("#artiste").fadeTo("slow", 0).css({"backgroundImage" : "url("+html+")"}).fadeTo("slow", 1);
                    img = html;
                }
            }
        });
        return false;
    },5000);
});

// Change external link into target _blank
$(document).ready(function(){
    $("a[href*=\'http://\']:not([href*=\'"+location.hostname+"\'])").attr("target","_blank");
});
