BoutonPartenaire=function(_nom , _lien , _logo)
{
	/******************************************************
	*				variables :
	******************************************************/ 
	this.nom=_nom;
	this.lien=_lien;
	this.logo=_logo;
	this.me=$("<div/>");
	var height=60;
	var width=100;
	
	this.me.addClass('imagePartenaire');
	
	/******************************************************
	*				ajout des elements :
	******************************************************/ 
	
	var image=$("<a style='border:none' href='"+_lien+"' target='_blank'><img style='border:none' src='"+this.logo+"' alt='"+this.nom+"' title='"+this.nom+"'/></a>");
	
	/*image.attr("src" , this.logo);
	image.attr("alt" , this.nom);
	image.attr("title" , this.nom);
	
	image.prepend("<a href='+_lien+' target='_blank'>");
	image.append("</a>");
	*/

	
	
	this.me.append(image);
	
	/******************************************************
	*				événements :
	******************************************************/ 
/*	image.click(
		function()
		{
			window.open(_lien)
		}
	)*/
	
	if (navigator.appName=="Netscape") 
	{
			
		image.load(function()
		{
		/******************************************************
		*				graphiques
		******************************************************/
		
			if ((this.height/this.width)>(height/width))
				image.attr('height' , height);
			else
				image.attr('width', width);
			
			image.css('margin-top' , (60-this.height)/2);		
	
		})
	}
	else
	{
		
	}
	

	

	this.me.height(60);
	
	return this.me;
}