/*---------------------------------------------
   Plugin : Tag Topic Title
---------------------------------------------*/
/*
- Plugin distribué par la Zone script ForumAtif http://zonescript.forumactif.com
-                      et Web64.fr www.web64.fr
-
- Auteur : Vincent Peybernes
-       contact@web64.fr
*/

jQuery(document).ready(function(){
	jQuery("a.topictitle").each(function(i){
		var title = jQuery(this);
		var string = title.html();
		string = string.replace("[Refuse]","<img src='http://i32.servimg.com/u/f32/11/32/82/03/annul11.png'>");
		string = string.replace("[Accepte]","<img src='http://i32.servimg.com/u/f32/11/32/82/03/off12.png'>");
        string = string.replace("[resolu]","<img src='http://storage.web64.fr/smileys/bouton/resolu.png' style='margin-right:-10px;>");			
		string = string.replace("[en cours]","<img src='http://storage.web64.fr/smileys/bouton/encours.png' style='margin-right:-10px;>");
		
		{title.html(string);}
	});
});




	

