// JavaScript Document

// fonction de changement du type de recherche
function fnChangeSearch(id){
	// selection du lien appelé et modifications listes
	if(id=='internet'){
		document.getElementById('internet').innerHTML="Internet";
		document.getElementById('lstSearch').innerHTML="<select name=\"moteur\" id=\"lst\"><option value=\"google\" selected=\"selected\">Google</option><option value=\"yahoo\">Yahoo!</option><option value=\"voila\">Voila</option></select>";
	}else if(id=='images'){
		document.getElementById('images').innerHTML="Images";
		document.getElementById('lstSearch').innerHTML="<select name=\"moteur\" id=\"lst\"><option value=\"googleImages\" selected=\"selected\">Google Images</option><option value=\"flickr\">Flickr</option></select>";
	}else if(id=='videos'){
		document.getElementById('videos').innerHTML="Vid&eacute;os";
		document.getElementById('lstSearch').innerHTML="<select name=\"moteur\" id=\"lst\"><option value=\"youtube\" selected=\"selected\">Youtube</option><option value=\"dailymotion\">Dailymotion</option><option value=\"googleVideos\">Google Videos</option></select>";
	}else if(id=='reseaux'){
		document.getElementById('reseaux').innerHTML="R&eacute;seau Social";
		document.getElementById('lstSearch').innerHTML="<select name=\"moteur\" id=\"lst\"><option value=\"facebook\" selected=\"selected\">Facebook</option><option value=\"myspace\">MySpace</option><option value=\"msn\">Msn</option></select>";
	}else if(id=='annonces'){
		document.getElementById('annonces').innerHTML="Annonces";
		document.getElementById('lstSearch').innerHTML="<select name=\"moteur\" id=\"lst\"><option value=\"ebay\" selected=\"selected\">ebay</option><option value=\"leboncoin\">Leboncoin</option><option value=\"paruvendu\">ParuVendu</option></select>";
	}
	
	// focus dans le champ de recherche
	document.forms['formSearch'].elements['search'].focus();
	
	// écriture de liens ailleurs
	if(id!='internet')document.getElementById('internet').innerHTML="<a href=\"javascript:fnChangeSearch('internet');\">Internet</a>";
	if(id!='images')document.getElementById('images').innerHTML="<a href=\"javascript:fnChangeSearch('images');\">Images</a>";
	if(id!='videos')document.getElementById('videos').innerHTML="<a href=\"javascript:fnChangeSearch('videos');\">Vid&eacute;os</a>";
	if(id!='reseaux')document.getElementById('reseaux').innerHTML="<a href=\"javascript:fnChangeSearch('reseaux');\">R&eacute;seau Social</a>";
	if(id!='annonces')document.getElementById('annonces').innerHTML="<a href=\"javascript:fnChangeSearch('annonces');\">Annonces</a>";
}
