

/* TargetBlank */

$(document).ready( function () {
    $('#blog a').click(function(){
        window.open(this.href);
        return false;
    });
    $('#stamp a').click(function(){
        window.open(this.href);
        return false;
    });
    $('#cmyk a').click(function(){
        window.open(this.href);
        return false;
    });
    $('#links a').click(function(){
        window.open(this.href);
        return false;
    });
    $('#mnBlog a').click(function(){
        window.open(this.href);
        return false;
    });
    $('#mnMail a').click(function(){
        window.open(this.href);
        return false;
    });
    $('#mnCmyk a').click(function(){
        window.open(this.href);
        return false;
    });
    $('#fotos area').click(function(){
        window.open(this.href);
        return false;
    });

});