/****************************************************************************
 *** external_links JS FILE
 ***
 *** This file contains:
 *** 	- Function to check if PDF downloads open in a new window/tab
 ***      global link on the DIV, in function of the type of target
 ***      Change the link title too, to have the same everywhere.
 ***      WARNING: only for PDF files, wich is the most type of file to download
 ***
 *** Author: Thierry Brodard <t.brodard@accessible.ch>
 *** Copyright: accessible Sàrl
 ***
 *****************************************************************************/

window.addEvent('domready',function() {
	$$('a').each(function(a) {
		
		linkString = new String(a);
		
	    if (linkString.contains('pdf')) {
	        a.set({
	            'target': '_blank',
				'title': 'Download'
	        });
	    }
	});
});	
