function lang(code){
	tags = Array( "div", "img", "p", "a", "span", "strong", "option", "label", "legend", "input", "button", "h1", "h2", "h3", "h4" );
	$.each(tags, function(index,value){ 
		$(value).each( function() {
			if( $(this).attr("lang") ){
				if( $(this).attr("lang")!=code){
					$(this).remove();
				}
			}
		})
	})
};

