var listeSsrubrique= new Array();
var currentId= new Array();
var i=j=0;

function initssrubrique(){

	$("#ssrubrique option").each(function(){
				listeSsrubrique[i]="<option id="+this.id+" value=\""+this.value+"\">"+$(this).html()+"</option>";
				currentId[i]=this.id;
				i++;
	});
		
	$("#ssrubrique option").remove();  
	$("#ssrubrique").append("<option value=\"\" selected=\"selected\"></option>");
}

function refresh(){
	actif = document.recherche.listRubrique.options[document.recherche.listRubrique.selectedIndex].value;
	
	$("#ssrubrique option").remove();
	for (j=0; j<listeSsrubrique.length; j++){
		if(currentId[j] == actif){
			$("#ssrubrique").append(listeSsrubrique[j]);
		}
	}
	$("#ssrubrique").append("<option value=\"\" selected=\"selected\"></option>");
}

function affichText() {
	if ( document.getElementById('searchbox').value == 'Rechercher' )
	{
		document.getElementById('searchbox').value = '';
	}

}


