function lang(code){
	tags = Array( "div", "img", "p", "a", "span", "strong", "option", "label" );
	tags.each( function(tag){ 
						$$(tag).each( function(element) {
										if( element.readAttribute("lang") ){
											if( element.readAttribute("lang") != code ){
												element.remove();
											}
										}
							})
					})
};