

window.addEvent('domready', function(){
      
			/* Sert à "skinner" un champs Select (ici la liste de selection de la recherche */
      var larg = 0;
      var largwidth = 0;
      
      if(window.ie6){ larg=205; largwidth=223; }else{ larg=220; largwidth=218; }
	  if(window.ie6){ larg=160; largwidth=178; }else{ larg=175; largwidth=173; }
			if($('champsSection')){
			new SkinSelect({
				element:$('champsSection'),
				width:larg,
				listwidth:largwidth
			});
			};

		/* Change l'adresse où chercher selon la sélection dans la liste de la recherche */
			if($('form_recherche')){
				$('form_recherche').addEvent('submit',function(event){
					
					if($('champsSection').value == "http://recherched.gouv.qc.ca/internet/recherche.asp"){
						$('query_nutch').value = $('champsRecherche').value
						
						$('form_recherche').setProperties({
							'method':'get',
							'action':$('champsSection').value
						})
					}
				})
			};
	
	/* Affiche un message si le flash n'est pas assez récent */
	if($("msgFlashNotInstalled") && deconcept.SWFObjectUtil.getPlayerVersion().major >= 8){
	   $("msgFlashNotInstalled").addClass('invisible');


	}else if($("msgFlashNotInstalled")) {

	  $("msgFlashNotInstalled").addClass('visible');
	  
	};
	
		
})

