
Event.observe(window, 'load', function(){
    $$('a[href^="http:"]:not(a[href*="youtube"]):not(a.btn_achat)', 'a[href^="https:"]:not(a[href*="youtube"]):not(a.btn_achat)', 'a[href$=".pdf"]', 'a[href$=".PDF"]',  'a[href$=".jpg"]', 'a[href$=".JPG"]').each(function(e){
		if (e.href.substr(0, 7) != 'mailto:' && !e.hasClassName('btnBuy')) {
			e.preventDefault();
			e.observe('click', openNewWindow);

			var sTitle = '';
            if (!e.getAttribute('title')) {
                sTitle = e.href;
            } else {
                sTitle = e.getAttribute('title');
            }

            e.setAttribute('title', 'Nouvelle fenêtre: '+sTitle);
			return false;
        }
    });

    $$('a[href^="http:"]:(a[href*="youtube"])').each(function(e){
	 e.setAttribute('rel', 'shadowbox;width=600;height=450: ');
    });
});


