// JavaScript Document
function toggleSelection(pageurl, id_url, id_hash){
	
	selected = false;
	if($('#tx_agamselection_pi1_selection img').attr("src") == "/typo3conf/ext/agam_selection/res/images/selection-minus.gif") selected=true;
	//alert ("src="+$('#tx_agamselection_pi1_selection img').attr("src")+" "+selected);
	
	if(selected == false){
		
		$.get(pageurl,
		   {type: "556", action: "add", page_url: id_url, hash: id_hash},
		   function success(data){
			   	//alert("add ok");
				$('#tx_agamselection_pi1_selection img').attr("src","/typo3conf/ext/agam_selection/res/images/selection-minus.gif");
				$('#tx_agamselection_pi1_selection img').attr("alt","Retirer de ma sélection");
				$('#tx_agamselection_pi1_label').html("Retirer de ma sélection");
				
		  	}
		 );

	}
	else{
		
		$.get(pageurl,
		   {type: "556", action: "remove", page_url: id_url, hash: id_hash},
		   function success(data){
			   //alert("remove ok");
			    $('#tx_agamselection_pi1_selection img').attr("src","/typo3conf/ext/agam_selection/res/images/selection-plus.gif");
				$('#tx_agamselection_pi1_selection img').attr("alt","Ajouter à ma sélection");
				$('#tx_agamselection_pi1_label').html("Ajouter à ma sélection");
			 	
		  	}
		 );
		
	}
}

function removeSelection(pageurl, id_url, id_hash){
	
	$.get(pageurl,
		   {type: "556", action: "remove", page_url: id_url, hash: id_hash},
		   function success(data){}
		 );
	
}
