$(document).ready(function(){
    
	$("#view_msn").ready(function() {
		$(this).css("color","#FF8C00");
	});
	
    $("#view_msn").click(function (e)  {
     	var pos = $(this).offset();
		
     	url = "index.php5?c=profil&a=_view_msn";
      	var adresseMSN = $(this).next().val();
		var idMembre = $(this).next().next().val();
      	
      	data = "adresseMSN="+adresseMSN+"&idMembre="+idMembre;
      	vgrJS.showPopup(url,data,pos);
     });
	 
	 $("#view_msn").hover(function() {
		$(this).css("color","#000000");
	 }, function() {
		$(this).css("color","#FF8C00");
	 }); 	
      	
});      	