function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function() { if (oldonload) { oldonload(); } func(); } } }

// Champ de recherche cliquable
addLoadEvent(function() {
	var recherche = document.getElementById('s');
	recherche.onfocus = function() {
		if (this.value == this.defaultValue) {
			this.value = "";
		}
	}
	recherche.onblur = function() {
		if (this.value == "") {
			this.value = this.defaultValue;
		}
	}
	
	
	
});

$(document).ready(function(){

/***************************************************************************************
	 Ouverture des liens externes (et des PDF) dans un nouveau navigateur/onglet
***************************************************************************************/
	$('a[href^=http]:not([href*="'+window.location.host+'"]), a[href$=.pdf], a[href$=.doc]').not('.exception').attr('target', '_blank');
});
