function css() {

	/* go on for IE in generall */
	if($.browser.msie){
		
		/* take care IE 6 only */
		if($.browser.version <= 6) {
		
			$('input').each(function(){
				var t = $(this).attr('type');
				$(this).addClass(t);
			});
		
		}
		
	
		$('table th:empty, table td:empty').addClass('empty');
	
	
	}
	
}

$(document).ready(css);
