$("document").ready(function()
{
    $("ul.liste li").click(function()
    {
        var href=$(this).attr('href');
        if(href!=undefined && href!='') window.location=href;
    })
})
