(function($){
$.fn.wsButtons = function(options){
	
	var obj = $(this);
	
	obj.each(function(){
		textLien = $(this).text();
		textLienLgt = textLien.length;
		wLink = (textLienLgt*6)+20;
		if(wLink < 40){wLink = 40;}
		$(this).text("");
		
		
		
		htmlBtn = '<table style="cursor:pointer">';
		htmlBtn += '<tr>';
		htmlBtn += '<td><div class="btn_G"></div></td>';
		htmlBtn += '<td class="btn_M" width="'+(wLink+10)+'">';
		htmlBtn += '<div class="textBtnWC">';
		htmlBtn += textLien;
		htmlBtn += '</div>';
		htmlBtn += '</td>';
		htmlBtn += '<td><div class="btn_D"></div></td>';
		htmlBtn += '</tr>';
		htmlBtn += '</table>';
		
		
		
		$(this).append(htmlBtn);
	});
	
};
})(jQuery);
$(document).ready(function(){
	$(".btnWC").wsButtons();
});

