//extension du lien
$(function(){
    $(".get_anchor").each(function() { 
        var href = $(this).find('a').attr('href'); 
        var target = $(this).find('a').attr('target'); 
        $(this).find('a').click(function(){
            if(target == "_blank") window.open(href); else document.location = href;
            return false; 
        });
        $(this).click(function() {
            if(target == "_blank") window.open(href); else document.location = href;
        });            
    });
    
    $(".img_fullsize").each(function(){
        $(this).fullsize();
    }); 
});


