	// Para la implementación del popunder de "enviar a un amigo"
  jQuery(document).ready(function(){
  	jQuery("#bot_send_friend").click(function (){
  		jQuery("#url_action").val("send_friend_ajax.php");
  		jQuery("#cont_frm_friend").show();
  		jQuery("#cont_frm_contact").hide();
  		jQuery("#sf_msg").html('');
  		jQuery("#div_enviar_amigo").css("left", (jQuery(window).width()/2) - (jQuery("#div_enviar_amigo").width()/2));
  		jQuery("#div_enviar_amigo").css("top", jQuery(window).scrollTop() + 100);
	  	jQuery("#div_enviar_amigo").show();
	    return false;
  	});

  	jQuery("#interesa").click(function (){
	  	jQuery("#url_action").val("contact_anunciante_ajax.php");
  		jQuery("#cont_frm_friend").hide();
  		jQuery("#cont_frm_contact").show();
  		jQuery("#sf_msg").html('');
  		jQuery("#div_enviar_amigo").css("left", (jQuery(window).width()/2) - (jQuery("#div_enviar_amigo").width()/2));
  		jQuery("#div_enviar_amigo").css("top", jQuery(window).scrollTop() + 100);
	  	jQuery("#div_enviar_amigo").show();
	    return false;
  	});

  	
  	jQuery(window).scroll(function () {
  		jQuery("#div_enviar_amigo").css("top", 100 + jQuery(window).scrollTop() + "px");
  	});
  	
  	jQuery("#cmd_sf_cancel").click(function(){
  		jQuery("#div_enviar_amigo").css("display", "none");
  	});
  	jQuery("#cmd_sf_cancel2").click(function(){
  		jQuery("#div_enviar_amigo").css("display", "none");
  	});

  	jQuery("#bt_submit_friend").click(function(){
			var queryString = jQuery('#frm_send_friend').formSerialize(); 
			jQuery.ajax({
				type: "POST",
   			url: jQuery("#url_action").val(),
   			data: queryString,
   			beforeSubmit: jQuery("#sf_msg").html('<img src="nautiocasion/_imgs/loading.gif">&nbsp;&nbsp;Enviando ...'),
   			success: function(msg){
   				jQuery("#sf_msg").css("color", "#f11c00");
     			jQuery("#sf_msg").html(msg);
   			}
 			});
  	});

	});

