// JavaScript Document
jQuery(document).ready(function($) { 

	$(".ajout_selection").removeAttr('href');
	$(".ajout_selection").css({ cursor: "pointer"});

	$(".ajout_selection").click( function(){
			if($(this).parents(".div_annonce").attr('id')){
				var idA = $(this).parents(".div_annonce").attr('id');
			}else{
				var idA = $(this).parents(".div_big_annonce").attr('id');
			}
			var annonce = idA.substr(idA.indexOf('-')+1);
			var lien = $(this);
			var img = $(this).prev();
			

			$.get("selection_ajoute_annonce-"+annonce+".html",  function(data){
				
				//Si l'annonce a été ajoutée
				if(data == true){

					var msg = 	'<p align="center" class="titrecategorie">'+
								'	<img src="images_facebox64/ok.jpg" alt="ok" width="40" height="40" /><br /><br />'+
								'	Ajouté à ma selection !'+
								'</p>'+
								'<div class="filet_formulaire" style="width:354px; padding:0 12px">'+
								'	<p class="textebleu">'+
								'		Il s\'agit de espace dans lequel vous pouvez stocker, à n\'importe quel moment, les annonces que vous souhaitez.'+
								'		Vous avez toujours accès à votre sélection où que vous soyez dans le site en utilisant le lien &quot;Voir ma sélection&quot; en haut à droite du menu.'+
								'	</p>'+
								'</div>';
								
					lien.replaceWith('<span class="textevert"> Dans ma sélection</span>');
					img.attr('src', 'images/selection_ok.png');
					$('#nb_selection').text(parseInt($('#nb_selection').text())+1);
				
				//Sinon...
				}else 
					//internaute non connecté
					if(data == false){
						var msg = 	'<p align="center" class="titrecategorie">'+
									'	<img src="images/connection-popup.jpg" width="358" height="118" /><br />'+
									'</p>'+
									'<table width="465" height="76" border="0" align="center" cellpadding="0" cellspacing="0">'+
									'	<tr valign="top">'+
									'   	<td width="208">'+
									'			<a href="connection.html">'+
									'				<img src="images/connection-bouton1.jpg" width="200" height="57" border="0" />'+
									'			</a>'+
									'		</td>'+
									'	    <td width="257">'+
									'			<a href="inscription.html">'+
									'				<img src="images/activation-bouton2.jpg" width="305" height="72" border="0" />'+
									'			</a>'+
									'		</td>'+
									'	</tr>'+
									'</table>'+
									'<p>&nbsp;</p>';
					
					//un probleme a eu lieu
					}else{
						var msg = 'erreur';
					}
				jQuery.facebox( msg );
   			});	

										
	});								
								
});
	
