// JavaScript Document

$(document).ready(function(){

    $(".element_objectif_emploi").hoverIntent({
        over: incrementCounter, // function = onMouseOver callback (REQUIRED)
        timeout: 2000, // number = milliseconds delay before onMouseOut
        out: function(){}  // function = onMouseOut callback (REQUIRED)
    });

    function incrementCounter() {
        var currentLocation =  document.location.href;
        var idElement = $(this).attr('id');
        currentLocation = currentLocation.replace('index.php','');
        currentLocation = currentLocation.replace('spip.php','');
        currentLocation = currentLocation.replace('?var_mode=calcul','');
        currentLocation = currentLocation.replace('?var_mode=recalcul','');

        idElement = idElement.replace('element','');
        $.ajax({
            type: 'GET',
            url: currentLocation+'squelettes/php/compteur.php?id='+idElement
        });
    }
});
