$(document).ready(function(){

	$('div.tx-mmforum-textbutton a').each(function(i){
		$(this).addClass('button')
	});


	$('a.button').each(function(i){
		$(this).html('<span>'+$(this).html()+'</span>');
		if($(this).hasClass('submit')){
			$(this).click(function(){ 
				var lform=$(this).parents('form')[0];
				if ( !lform.onsubmit ){
					$(this).parents('form').submit();
				}else{
					if (lform.onsubmit()){ 
						$(this).parents('form').submit();
					}else{
						return false;
					}
				}
			});
			return;
		}
		if($(this).hasClass('reset')){
			$(this).click(function(){ $(this).parent('form')[0].reset(); });
			return;
		}
		$(this).click(function(){$(this).blur();});
	});


});
