var CufonRTLClass=(function(){
		this.RTL = RTL;
  


   function RTL(tagName) {
        $(tagName)/*.css('font-size', '19px')*/.wrapInner('<bdo class="cufon" dir=ltr></bdo>');
		$('bdo.cufon').each(function()    {
		
			var word = $(this).text();
			
			var enPatt=/[a-z]/i;
			
			if(!word.match(enPatt))
			{
				var splittext = word.split("");
				var reversedtext = splittext.reverse();
				var newtext = reversedtext.join("");
				$(this).text(newtext);
			}
		});
		
		
    }
	
	
		
});

CufonRTL = new CufonRTLClass;



