// JavaScript Document

var lastFocus = "";
function getFocusBorder(elt) {
	if(lastFocus != ""){
		lastFocus.style.border='1px solid #00642e';
	}
	elt.style.border='1px solid #8d2000';
	lastFocus = elt;
}


function maj_liste() {
	
	
	var id = document.getElementById('je_suis').options[document.getElementById('je_suis').selectedIndex].value;
	//alert (id);
	$.ajax({
		type: "POST",
		url: "copine.php",
		data: "id="+id,
		success: function(msg){
			$(".plus_egal").empty();
			//$("#copine").html(msg);
			//$("#image1").attr("src", "images/legumes/" + id + ".jpg").fadeIn("slow");
			$("#image1").fadeOut("normal", function (){
													 
				imgOk = true;
				var cheminImg = "images/vide.jpg";
				//testExists("images/legumes/" + id + ".jpg");
				if(imgOk){
					cheminImg = "images/legumes/" + id + ".jpg";
				}
				   
				$("#image1").attr("src", cheminImg).fadeIn("normal", function(){
					$("#copine").fadeOut("normal", function (){
						$("#copine").html(msg).fadeIn("normal");
						$("#phrase").fadeOut("normal");
						$("#egal").fadeOut("normal");
					});
				});
			});
			
			
		}
	});
	
}

function maj_phrase() {
	
	var id2;
	
	if(document.getElementById('cop')){
		id2 = document.getElementById('cop').options[document.getElementById('cop').selectedIndex].value;
	}else{
		id2 = document.getElementById('copHidden').value;
	}
	var id1 = document.getElementById('je_suis').options[document.getElementById('je_suis').selectedIndex].value;
	
	//alert(id2 +" "+id1);
	
	$.ajax({
		type: "POST",
		url: "phrase.php",
		data: "id1="+id1+"&id2="+id2,
		success: function(msg){
			$("#image2").fadeOut("normal", function (){
				$("#image2").attr("src", "images/legumes/" + id2 + ".jpg").fadeIn('normal', function(){
					$("#phrase").fadeOut("normal", function (){
						$("#phrase").html(msg).fadeIn('normal');
						$("#egal").fadeIn('normal');
					});
				});
			});
			
		}
	});
	
}


