//videos
$(function() {
    $.nyroModalSettings({
        processHandler: function(settings) {
            var scaleRatio = 1;
            var from = settings.from;
            if (from && from.href && from.href.indexOf('http://www.youtube.com/watch?v=') == 0) {
                $.nyroModalSettings({
                    type: 'swf',
                    width: (640 * scaleRatio),
                    height: (370 * scaleRatio),
                    url: from.href.replace(new RegExp("watch\\?v=", "i"), 'v/')
                });
            } else {
                $.nyroModalSettings({
                    width: (500),
                    height: (600),
                    url: from.href 
                });
            }
        }
    });
    $("a[href^='http:']").not("[href*=" + location.hostname + "]").attr('target','_blank').not(":has(img)").after('<img src="/images/icones/icone_externe.gif" alt="external link" style="margin-left:3px;"/>');
});


